Puppet Class: bacula::common
- Defined in:
- manifests/common.pp
Overview
Class: bacula::common
Setup common components for all bacula daemons
6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/common.pp', line 6
class bacula::common {
# We need to create the bacula group _before_ installing Bacula, or the
# ::bacula::puppetcerts class will fail on first Puppet run.
group { 'bacula':
ensure => present,
}
class { '::bacula::common::install': }
}
|