diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-02-08 03:40:07 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-02-08 03:40:07 -0200 |
commit | 858482592039b4ef0dc8f80c7c4809f23cdf010a (patch) | |
tree | 01a08e49b6692a1c1d8c89a9031c2024b2c00b06 /manifests | |
parent | a9c544369f3999b868cfc1eb0dcb10e050defcc1 (diff) | |
download | puppet-nodo-feature/cleanup.tar.gz puppet-nodo-feature/cleanup.tar.bz2 |
Adds nodo::utils::basefeature/cleanup
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils/base.pp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils/base.pp b/manifests/utils/base.pp new file mode 100644 index 0000000..f7ff201 --- /dev/null +++ b/manifests/utils/base.pp @@ -0,0 +1,13 @@ +class nodo::utils::base { + package { [ 'screen', 'less', 'bzip2', 'openssl', 'lynx', 'unzip', + 'nmap', 'telnet', 'tree', 'whois', 'dosfstools', 'dnsutils', 'secure-delete', + 'bc', 'lsof', 'wipe', 'vrms', 'nsca-client', 'uuid-runtime', + 'multitail', 'bash-completion', 'zsh' ]: + ensure => installed, + } + + # Not using right now + package { [ 'logcheck', 'logcheck-database', 'denyhosts', 'logwatch' ]: + ensure => absent, + } +} |