Puppet Class: burp::install
- Defined in:
- manifests/install.pp
Overview
Class burp::install
This class installs the BURP package if ‘manage_package` is true.
Authors
Tobias Brunner <tobias.brunner@vshn.ch>
Copyright
Copyright 2015 Tobias Brunner, VSHN AG
13 14 15 16 17 18 19 20 21 |
# File 'manifests/install.pp', line 13
class burp::install {
if $::burp::manage_package {
package { $::burp::package_name:
ensure => $::burp::package_ensure,
}
}
}
|