From 4af741b602a4c3c80d4fd535c71ee9a614fad685 Mon Sep 17 00:00:00 2001 From: Patrik Holmqvist Date: Wed, 15 Jan 2025 13:05:18 +0100 Subject: [PATCH] Rename manifest to match class name --- .../modules/net/manifests/baas2_restoretest.pp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 global/overlay/etc/puppet/modules/net/manifests/baas2_restoretest.pp 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', + } + +}