diff options
author | anarcat <anarcat@koumbit.org> | 2009-12-08 23:44:08 -0500 |
---|---|---|
committer | anarcat <anarcat@koumbit.org> | 2009-12-08 23:44:08 -0500 |
commit | d7df7ea8c71a5a95c3659d0cbac3f1c39be11777 (patch) | |
tree | 2c4d0554c8bf5a0241b15124a2a6bfd05b3dfd29 /manifests | |
parent | ed354f37f564286f4a2a911773700f7b69a42d9b (diff) | |
parent | 7c78d97a7b961565292cfb1a118a7af3bc25b1cc (diff) | |
download | puppet-backupninja-d7df7ea8c71a5a95c3659d0cbac3f1c39be11777.tar.gz puppet-backupninja-d7df7ea8c71a5a95c3659d0cbac3f1c39be11777.tar.bz2 |
Merge branch 'master' of ssh://git.koumbit.net/puppet/modules/backupninja
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/client.pp | 3 | ||||
-rw-r--r-- | manifests/rdiff.pp | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/manifests/client.pp b/manifests/client.pp index acff367..95e3905 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -36,7 +36,8 @@ class backupninja::client::defaults { ensure => '0.9.6-4'; } file { $configdir: - ensure => directory + ensure => directory, + mode => 750, owner => 0, group => 0; } } diff --git a/manifests/rdiff.pp b/manifests/rdiff.pp index 2624ecd..38a975d 100644 --- a/manifests/rdiff.pp +++ b/manifests/rdiff.pp @@ -27,7 +27,7 @@ define backupninja::rdiff( $ssh_dir = false, $authorized_keys_file = false, $installuser = true, $installkey = true, $key = false, $backuptag = false, $home = false, $backupkeytype = "rsa", $backupkeystore = false, $extras = false) { - include backupninja::client::rdiff-backup + include backupninja::client::rdiff_backup case $type { 'remote': { |