Puppet Class: bacula::common::install
- Defined in:
- manifests/common/install.pp
Overview
Class: bacula::common::install
Install common components for all bacula daemons
6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/common/install.pp', line 6
class bacula::common::install {
# FreeBSD does not have a separate bacula-common port
if $::operatingsystem != 'FreeBSD' {
package { 'bacula-bacula-common':
ensure => installed,
name => 'bacula-common',
}
}
}
|