define client( $ensure = 'present' ) { case $ensure { ### # If 'present', we copy in the file from the template directory, # and then we notify apache. ### 'present' : { file { "/opt/parabuild/etc/system/parabuild.conf": ensure => file, owner => parabuild, group => parabuild, notify => Service["parabuild"], content => template("parabuild/parabuild.conf.erb"), } } }
