Puppet Class: eclipse::params
- Defined in:
- manifests/params.pp
Overview
Actions:
Requires:
Sample Usage:
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'manifests/params.pp', line 17
class eclipse::params {
case $::operatingsystem {
'centos', 'redhat', 'fedora': {
#TODO: used the debian defaults -- verify in other flavors:
$downloadpath='/usr/src/'
$installpath='/usr/lib/'
$desktopfilepath='/usr/share/applications/'
$simlinkto='/usr/bin/'
}
'ubuntu', 'debian': {
$downloadpath='/usr/src/'
$installpath='/usr/lib/'
$desktopfilepath='/usr/share/applications/'
$simlinkto='/usr/bin/'
}
default: {
#TODO: used the debian defaults -- verify in other flavors:
$downloadpath='/usr/src/'
$installpath='/usr/lib/'
$desktopfilepath='/usr/share/applications/'
$simlinkto='/usr/bin/'
}
}
$execlaunchpaths = ["/usr/bin", "/usr/sbin", "/bin", "/sbin", "/etc"]
$executefrom = "/tmp/"
}
|