12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'manifests/init.pp', line 12
class software (
$applications_path = $software::params::applications_path,
$preference_panes_path = $software::params::preference_panes_path,
$utilities_path = $software::params::utilities_path,
) inherits software::params {
# Not Used
fail("The ${module_name} module does not use the ${name} class.
Just include the software or group classes you want like this:
include software::browsers::chrome (just chrome) include software::browsers (all browsers in group)")
}
|