From 05b987d4d81e8d46203a9dc368eab25c8b973dfc Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 8 Jul 2008 18:43:40 +0000 Subject: make new maildir piece to backupninja module --- manifests/maildir.pp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 manifests/maildir.pp (limited to 'manifests/maildir.pp') diff --git a/manifests/maildir.pp b/manifests/maildir.pp new file mode 100644 index 0000000..b7f36f7 --- /dev/null +++ b/manifests/maildir.pp @@ -0,0 +1,38 @@ +# maildir handler, as part of a backupninja run. +# +# The maildir handler slowly creates a backup of each user's +# maildir to a remote server. It is designed to be run with +# low overhead in terms of CPU and bandwidth, so it runs pretty +# slow. Hardlinking is used to save storage space. The actual +# maildir is stored within each snapshot directory. +# +# Valid attributes for this type are: +# +# order: The prefix to give to the handler config filename, to set +# order in which the actions are executed during the backup run. +# +# ensure: Allows you to delete an entry if you don't want it any more +# (but be sure to keep the configdir, name, and order the same, so +# that we can find the correct file to remove). +# +# +define backupninja::maildir($order = 40, + $ensure = present, + $srcdir = '/maildir', + $destdir = '/crypt/maildir', + $desthost = false, + $destuser = false, + $destid_file = '/root/.ssh/id_rsa', + $remove = no, + $multiconnection = yes + ) { + include backupninja::client + file { "${backupninja::client::configdir}/${order}_${name}.maildir": + ensure => $ensure, + content => template('backupninja/maildir.conf.erb'), + owner => root, + group => root, + mode => 0600, + require => File["${backupninja::client::configdir}"] + } +} -- cgit v1.2.3