Puppet Class: pscobol::params
Summary
Private class for Micro Focus Visual Cobol module
that defines default parameters
Overview
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'manifests/params.pp', line 7
class pscobol::params {
$ensure = 'present'
$ps_home = undef
$ps_app_home = undef
$ps_cust_home = undef
case $facts['operatingsystem'] {
'windows': {
$installdir = 'C:/Program Files (x86)/Micro Focus/Visual COBOL'
$lmpath = 'C:/Program Files (x86)/Common Files/SafeNet Sentinel/Sentinel RMS License Manager/WinNT/CesAdminTool.exe'
$package = undef
$patches = undef
$license = undef
$targets = undef
}
default: {
$installdir = 'C:/Program Files (x86)/Micro Focus/Visual COBOL'
$lmpath = 'C:/Program Files (x86)/Common Files/SafeNet Sentinel/Sentinel RMS License Manager/WinNT/CesAdminTool.exe'
$package = undef
$patches = undef
$license = undef
$targets = undef
}
}
}
|