summaryrefslogtreecommitdiffstats
path: root/tozt/tozt/manifests/paste.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tozt/tozt/manifests/paste.pp')
-rw-r--r--tozt/tozt/manifests/paste.pp34
1 files changed, 0 insertions, 34 deletions
diff --git a/tozt/tozt/manifests/paste.pp b/tozt/tozt/manifests/paste.pp
deleted file mode 100644
index 93d7939..0000000
--- a/tozt/tozt/manifests/paste.pp
+++ /dev/null
@@ -1,34 +0,0 @@
-class tozt::paste {
- include tozt::certbot
- include tozt::persistent
-
- file {
- "/media/persistent/paste/doy":
- ensure => directory,
- owner => 'doy',
- group => 'doy',
- require => [
- Class['tozt::persistent'],
- User['doy'],
- Group['doy'],
- ];
- "/home/doy/paste":
- ensure => link,
- target => "/media/persistent/paste/doy",
- owner => 'doy',
- group => 'doy',
- require => [
- User['doy'],
- Group['doy'],
- File["/home/doy"],
- ];
- }
-
- nginx::site {
- "paste-tls":
- source => 'puppet:///modules/tozt/nginx/paste-tls.conf',
- require => Class['certbot'];
- "paste":
- source => 'puppet:///modules/tozt/nginx/paste.conf';
- }
-}