1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'manifests/params.pp', line 1
class dosbox::params {
# name of the dosbox package
$package = "dosbox"
# location of the files to map to virtal drive 'c'
$virtual_drive = "/srv/files/dos"
# owner for files in the virtual drive
$owner = "root"
# group owner for files in the virtual drive
$group = "dosbox"
# mode for the files in the virtual drive - group writable + sticky
$mode = "3664"
# default settings for dosbox mapping to config file directives of the same
# names
$fullscreen = false
$fullresolution = "original"
$windowresolution = "original"
$output = "surface"
$scaler = "normal2x"
$aspect = false
}
|