From 83f64fb464fc5b69e24087a31750befe428981c1 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 15 Jun 2020 00:47:38 -0400 Subject: remove pass configuration --- manifests/tozt.pp | 1 - modules/tozt/manifests/pass.pp | 36 ------------------------------------ 2 files changed, 37 deletions(-) delete mode 100644 modules/tozt/manifests/pass.pp 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"], - ], - } -} -- cgit v1.2.3-54-g00ecf