summaryrefslogtreecommitdiffstats
path: root/modules/tarsnap/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tarsnap/manifests/init.pp')
-rw-r--r--modules/tarsnap/manifests/init.pp31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/tarsnap/manifests/init.pp b/modules/tarsnap/manifests/init.pp
deleted file mode 100644
index c397164..0000000
--- a/modules/tarsnap/manifests/init.pp
+++ /dev/null
@@ -1,31 +0,0 @@
-class tarsnap {
- include cron
-
- package { 'tarsnap':
- ensure => installed;
- }
-
- package::makepkg { 'acts':
- ensure => installed,
- require => Package['tarsnap'];
- }
-
- file {
- '/etc/tarsnap/tarsnap.conf':
- source => 'puppet:///modules/tarsnap/tarsnap.conf';
- '/etc/acts.conf':
- source => 'puppet:///modules/tarsnap/acts.conf';
- '/etc/cron.daily/acts':
- source => 'puppet:///modules/tarsnap/acts',
- mode => '0755',
- require => [
- File['/etc/acts.conf'],
- Package::Makepkg['acts'],
- Class['cron'],
- ];
- }
-
- secret { "/etc/tarsnap/machine-key":
- source => 'tarsnap',
- }
-}