aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deployment/backups/manifests/init.pp2
-rw-r--r--modules/rsnapshot/manifests/init.pp4
2 files changed, 3 insertions, 3 deletions
diff --git a/deployment/backups/manifests/init.pp b/deployment/backups/manifests/init.pp
index 6c2ea7dd..84822ef5 100644
--- a/deployment/backups/manifests/init.pp
+++ b/deployment/backups/manifests/init.pp
@@ -1,7 +1,7 @@
class backups {
class server {
- $backups_dir = '/backups'
+ $backups_dir = '/data/backups'
$confdir = "${backups_dir}/conf"
class { 'rsnapshot::base':
diff --git a/modules/rsnapshot/manifests/init.pp b/modules/rsnapshot/manifests/init.pp
index 5e8b4618..5d145172 100644
--- a/modules/rsnapshot/manifests/init.pp
+++ b/modules/rsnapshot/manifests/init.pp
@@ -1,5 +1,5 @@
class rsnapshot {
- class base($confdir = '/backups/conf') {
+ class base($confdir = '/data/backups/conf') {
package { ['rsnapshot']: }
file { $confdir:
@@ -33,7 +33,7 @@ class rsnapshot {
# backups that should be kept. If you don't want hourly, daily,
# weekly or monthly backups, set ${x}_interval to '0'
define backup(
- $snapshot_root = '/backups',
+ $snapshot_root = '/data/backups',
$one_fs = '1',
$backup = [],
$backup_script = [],