13 lines
355 B
Puppet
13 lines
355 B
Puppet
# This puppet manifest is used to test backup and restore in an automated fashion
|
|
# This tests the backup and restores when manged by sunet::baas2 from puppet-sunet
|
|
# Jira-ref: SUNETOPS-1997
|
|
class net::baas2_restoretest() {
|
|
|
|
file { '/opt/restore-target':
|
|
ensure => directory,
|
|
mode => '0755',
|
|
owner => 'root',
|
|
group => 'root',
|
|
}
|
|
|
|
}
|