diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-09-23 17:49:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-09-23 17:49:56 -0300 |
commit | 0f83c2aebe89b53a939c2f437f827bfe9e90e02c (patch) | |
tree | f3e5a32341d07f9201d3751ba0a5026ed15b0e36 /manifests/utils/security.pp | |
parent | 4a880ad141c8deefb41549e5e79c868303e1c296 (diff) | |
download | puppet-nodo-0f83c2aebe89b53a939c2f437f827bfe9e90e02c.tar.gz puppet-nodo-0f83c2aebe89b53a939c2f437f827bfe9e90e02c.tar.bz2 |
Utils: reorder and cleanup
Diffstat (limited to 'manifests/utils/security.pp')
-rw-r--r-- | manifests/utils/security.pp | 46 |
1 files changed, 14 insertions, 32 deletions
diff --git a/manifests/utils/security.pp b/manifests/utils/security.pp index 953581c..7044dd1 100644 --- a/manifests/utils/security.pp +++ b/manifests/utils/security.pp @@ -1,47 +1,29 @@ class nodo::utils::security inherits nodo::utils::security::base { # Security package { [ - 'apg', - 'gnupg-agent', - 'makepasswd', 'pwgen', - 'fpm2', - 'encfs', 'signing-party', 'libnss3-tools', 'ssss', - 'libgfshare-bin', - 'pass', 'revelation', 'onetime', 'gnupg2', - 'monkeysign', 'gnutls-bin', + 'gnupg-agent', + #'kedpm', + #'kedpm-gtk', + #'apg', + #'makepasswd', + #'keepassx', + #'monkeysign', + #'fpm2', + #'encfs', + #'libgfshare-bin', + #'pass', + #'harden', + #'paperkey', + #'keyringer', ]: ensure => installed, } - - # Soon :) - #package { [ - # 'keyringer', - #]: - # ensure => present, - #} - - # To be evaluated - #package { [ - # 'harden', - # 'paperkey', - #]: - # ensure => present, - #} - - if $::lsbdistcodename != 'squeeze' { - package { [ - 'kedpm', - 'kedpm-gtk', - ]: - ensure => installed, - } - } } |