summaryrefslogtreecommitdiffstats
path: root/modules/tozt/manifests/paste.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-10-19 21:25:44 -0400
committerJesse Luehrs <doy@tozt.net>2018-10-19 21:25:44 -0400
commit89c0cc84be250ba8fe5722baa35293c70c98f2a0 (patch)
tree4328a8b7edfb1e1b22a07f6165e7b7942d3cf63b /modules/tozt/manifests/paste.pp
parent145883adc8f58ba41fa6a679b97370ffc448ea39 (diff)
downloadpuppet-tozt-89c0cc84be250ba8fe5722baa35293c70c98f2a0.tar.gz
puppet-tozt-89c0cc84be250ba8fe5722baa35293c70c98f2a0.zip
move the tozt module around to allow for more host types
Diffstat (limited to 'modules/tozt/manifests/paste.pp')
-rw-r--r--modules/tozt/manifests/paste.pp34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/tozt/manifests/paste.pp b/modules/tozt/manifests/paste.pp
deleted file mode 100644
index 93d7939..0000000
--- a/modules/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';
- }
-}