summaryrefslogtreecommitdiffstats
path: root/tozt/duplicati/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tozt/duplicati/manifests/init.pp')
-rw-r--r--tozt/duplicati/manifests/init.pp26
1 files changed, 0 insertions, 26 deletions
diff --git a/tozt/duplicati/manifests/init.pp b/tozt/duplicati/manifests/init.pp
deleted file mode 100644
index 643dd43..0000000
--- a/tozt/duplicati/manifests/init.pp
+++ /dev/null
@@ -1,26 +0,0 @@
-class duplicati {
- package {
- [
- "gtk-sharp-2",
- "mono",
- ]:
- ensure => installed,
- install_options => ["--asdeps"];
- }
-
- package::makepkg { 'duplicati-latest':
- ensure => installed,
- require => [
- Package['gtk-sharp-2'],
- Package['mono'],
- ]
- }
-
- service { 'duplicati':
- ensure => running,
- enable => true,
- require => Package::Makepkg['duplicati-latest'];
- }
-
- # XXX configure backups
-}