summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-06-15 00:47:38 -0400
committerJesse Luehrs <doy@tozt.net>2020-06-15 00:47:38 -0400
commit83f64fb464fc5b69e24087a31750befe428981c1 (patch)
tree270a9fc149fa08f158eda188b9e8f1a13ae1d931
parent427a1965e8239712621b34c84624123778935e4d (diff)
downloadpuppet-tozt-83f64fb464fc5b69e24087a31750befe428981c1.tar.gz
puppet-tozt-83f64fb464fc5b69e24087a31750befe428981c1.zip
remove pass configuration
-rw-r--r--manifests/tozt.pp1
-rw-r--r--modules/tozt/manifests/pass.pp36
2 files changed, 0 insertions, 37 deletions
diff --git a/manifests/tozt.pp b/manifests/tozt.pp
index caf64f3..edc6079 100644
--- a/manifests/tozt.pp
+++ b/manifests/tozt.pp
@@ -20,7 +20,6 @@ node 'tozt', 'tozt.localdomain' {
include tozt::metabase
include tozt::monitoring
include tozt::munin
- include tozt::pass
include tozt::paste
include tozt::services
include tozt::site
diff --git a/modules/tozt/manifests/pass.pp b/modules/tozt/manifests/pass.pp
deleted file mode 100644
index b1241c1..0000000
--- a/modules/tozt/manifests/pass.pp
+++ /dev/null
@@ -1,36 +0,0 @@
-class tozt::pass {
- include tozt::persistent
-
- file {
- "/media/persistent/pass":
- ensure => directory,
- owner => 'doy',
- group => 'doy',
- require => [
- Class['tozt::persistent'],
- User['doy'],
- Group['doy'],
- ];
- "/home/doy/pass":
- ensure => link,
- target => "/media/persistent/pass",
- owner => 'doy',
- group => 'doy',
- require => [
- File['/home/doy'],
- User['doy'],
- Group['doy'],
- ];
- }
-
- exec { "pass git init":
- command => "/usr/bin/git init --bare",
- user => "doy",
- cwd => "/media/persistent/pass",
- creates => "/media/persistent/pass/HEAD",
- require => [
- Class["git"],
- File["/media/persistent/pass"],
- ],
- }
-}