Puppet Class: alkivi_backup::pfsense
- Defined in:
- manifests/pfsense.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/pfsense.pp', line 1
class alkivi_backup::pfsense(
) {
File {
ensure => present,
owner => 'root',
group => 'root',
}
# Backup script
file { '/root/alkivi-scripts/alkivi-backup-pfsense':
mode => '0750',
source => 'puppet:///modules/alkivi_backup/alkivi-backup-pfsense',
require => File['/root/alkivi-scripts/'],
}
}
|