Puppet Class: bacula::storagedaemon::service

Defined in:
manifests/storagedaemon/service.pp

Overview

Class: bacula::storagedaemon::service

Enable Bacula Storagedaemon at boot



6
7
8
9
10
11
12
13
14
15
# File 'manifests/storagedaemon/service.pp', line 6

class bacula::storagedaemon::service {

    include ::bacula::params

    service { 'bacula-storagedaemon':
        name    => $::bacula::params::bacula_storagedaemon_service,
        enable  => true,
        require => Class['bacula::storagedaemon::config'],
    }
}