Skip to content

Commit

Permalink
Add package install options
Browse files Browse the repository at this point in the history
  • Loading branch information
clauded committed Oct 14, 2015
1 parent 4847c9a commit 6b30452
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions manifests/params.pp
@@ -1,19 +1,20 @@
# Various default parmeters
class cups::params {
$package_ensure = present
$package_name = 'cups'
$package_install_options = undef
$package_ensure = present
$package_name = 'cups'
$package_install_options = undef

$devel_package_ensure = undef
$devel_package_name = "${package_name}-devel"
$devel_package_install_options = undef
$devel_package_ensure = undef
$devel_package_name = "${package_name}-devel"
$devel_package_install_options = undef

$service_ensure = 'running'
$service_enabled = true
$service_name = 'cups'
$service_ensure = 'running'
$service_enabled = true
$service_name = 'cups'

$cups_lpd_enable = false
$cups_lpd_ensure = 'running'
$package_cups_lpd = 'cups-lpd'
$config_file = 'puppet:///modules/cups/cups-lpd'
$cups_lpd_enable = false
$cups_lpd_ensure = 'running'
$package_cups_lpd = 'cups-lpd'
$package_cups_lpd_install_options = undef
$config_file = 'puppet:///modules/cups/cups-lpd'
}

0 comments on commit 6b30452

Please sign in to comment.