diff --git a/global/overlay/etc/puppet/modules/net/manifests/baas2_restoretest.pp b/global/overlay/etc/puppet/modules/net/manifests/baas2_restoretest.pp new file mode 100644 index 0000000..97a3279 --- /dev/null +++ b/global/overlay/etc/puppet/modules/net/manifests/baas2_restoretest.pp @@ -0,0 +1,13 @@ +# 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', + } + +}