diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 640bc67..64e2645 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -42,6 +42,15 @@ class monkeysphere inherits monkeysphere::defaults { ensure => present, content => template("monkeysphere/monkeysphere-authentication.conf.erb"), } + + # This was the old way which the module checked monkeysphere keys + file { "/usr/local/sbin/monkeysphere-check-key": + ensure => absent, + owner => root, + group => root, + mode => 0755, + content => "#!/bin/bash\n/usr/bin/gpg --homedir /var/lib/monkeysphere/host --list-keys '=$key' &> /dev/null || false", + } } class monkeysphere::defaults { |