1
0
mirror of https://github.com/krislamo/pup-tests synced 2024-09-20 09:40:36 +00:00
pup-tests/code/environments/production/modules/amanda/manifests/init.pp

59 lines
1.3 KiB
ObjectPascal
Raw Normal View History

class amanda {
# Install Amanda
package { ['amanda-server','amanda-client','amanda-common']:
ensure => present
}
# Enable "backup" user account
user { 'backup':
ensure => present,
shell => "/bin/bash"
}
# Create important Amanda directories
file { ['/etc/amanda','/etc/amanda/MyConfig','/amanda',
'/amanda/vtapes','/amanda/holding','/amanda/state']:
ensure => directory,
owner => "backup"
}
# Create vtape directories
file { ['/amanda/vtapes/slot1','/amanda/vtapes/slot2',
'/amanda/vtapes/slot3','/amanda/vtapes/slot4']:
ensure => directory,
owner => "backup"
}
# State directories
file { ['/amanda/state/curinfo',
'/amanda/state/log',
'/amanda/state/index']:
ensure => directory,
owner => "backup"
}
# Deploy config
file { '/etc/amanda/MyConfig/amanda.conf':
ensure => file,
content => template('amanda/amanda.conf.epp'),
owner => "backup"
}
# Backup locations
file { '/etc/amanda/MyConfig/disklist':
ensure => file,
content => template('amanda/disklist.epp'),
owner => "backup"
}
# Deploy amanda hosts for the amanda server
file { '/etc/amandahosts':
ensure => file,
content => template('amanda/amandahosts-server.epp'),
owner => "backup"
}
}