summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/certbot/manifests/init.pp2
-rw-r--r--modules/duplicati/manifests/init.pp2
-rw-r--r--modules/tarsnap/manifests/init.pp1
-rw-r--r--modules/tozt/manifests/site.pp9
-rw-r--r--modules/weechat/manifests/init.pp2
5 files changed, 12 insertions, 4 deletions
diff --git a/modules/certbot/manifests/init.pp b/modules/certbot/manifests/init.pp
index 79ff1d8..9c733f3 100644
--- a/modules/certbot/manifests/init.pp
+++ b/modules/certbot/manifests/init.pp
@@ -21,4 +21,6 @@ class certbot {
source => 'puppet:///modules/certbot/reload-cert',
require => File['/etc/letsencrypt/renewal-hooks/deploy'];
}
+
+ # XXX initial certbot run
}
diff --git a/modules/duplicati/manifests/init.pp b/modules/duplicati/manifests/init.pp
index 9152285..643dd43 100644
--- a/modules/duplicati/manifests/init.pp
+++ b/modules/duplicati/manifests/init.pp
@@ -21,4 +21,6 @@ class duplicati {
enable => true,
require => Package::Makepkg['duplicati-latest'];
}
+
+ # XXX configure backups
}
diff --git a/modules/tarsnap/manifests/init.pp b/modules/tarsnap/manifests/init.pp
index 22b8069..4dbf250 100644
--- a/modules/tarsnap/manifests/init.pp
+++ b/modules/tarsnap/manifests/init.pp
@@ -9,6 +9,7 @@ class tarsnap {
}
file {
+ # XXX /etc/tarsnap.conf
'/etc/acts.conf':
source => 'puppet:///modules/tarsnap/acts.conf';
'/etc/cron.daily/acts':
diff --git a/modules/tozt/manifests/site.pp b/modules/tozt/manifests/site.pp
index b221978..266fb4c 100644
--- a/modules/tozt/manifests/site.pp
+++ b/modules/tozt/manifests/site.pp
@@ -2,17 +2,17 @@ class tozt::site {
nginx::site {
"blog-tls":
source => 'puppet:///modules/tozt/nginx/blog-tls.conf',
- enabled => false;
+ enabled => false; # XXX
"blog":
source => 'puppet:///modules/tozt/nginx/blog.conf';
"doy-tls":
source => 'puppet:///modules/tozt/nginx/doy-tls.conf',
- enabled => false;
+ enabled => false; # XXX
"doy":
source => 'puppet:///modules/tozt/nginx/doy.conf';
"paste-tls":
source => 'puppet:///modules/tozt/nginx/paste-tls.conf',
- enabled => false;
+ enabled => false; # XXX
"paste":
source => 'puppet:///modules/tozt/nginx/paste.conf';
}
@@ -32,4 +32,7 @@ class tozt::site {
File['/home/doy'],
];
}
+
+ # XXX build blog and site
+ # XXX eventually move blog/site/paste onto a separate volume?
}
diff --git a/modules/weechat/manifests/init.pp b/modules/weechat/manifests/init.pp
index 4f4edb8..a711bbe 100644
--- a/modules/weechat/manifests/init.pp
+++ b/modules/weechat/manifests/init.pp
@@ -3,5 +3,5 @@ class weechat {
ensure => installed;
}
- # configure weechat relay here...
+ # XXX configure weechat relay here...
}