diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-01-02 18:55:03 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-01-02 18:55:03 -0200 |
commit | 6e768910155e7a2a27ee04aac43fadeedd7a582a (patch) | |
tree | 0ee4a92efb81c20ace97cd86a09d1da13efdbbcf /manifests | |
parent | 7afa3cacbe0d470d6cc4d096ba1afc7bb2c1f8c0 (diff) | |
download | puppet-nodo-6e768910155e7a2a27ee04aac43fadeedd7a582a.tar.gz puppet-nodo-6e768910155e7a2a27ee04aac43fadeedd7a582a.tar.bz2 |
Adds reboot-notifier and curl into nodo::utils
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/utils.pp | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp index d033b09..971e352 100644 --- a/manifests/utils.pp +++ b/manifests/utils.pp @@ -1,19 +1,15 @@ # Common utilities class nodo::utils inherits nodo::utils::base { - package { 'vim-nox': - ensure => present, - } - - package { 'needrestart': + package { [ + 'vim-nox', + 'needrestart', + 'reboot-notifier', + #debian-goodies, + ]: ensure => present, } - # Might be defined elsewhere - if !defined(Package['wget']) { - package { 'wget': - ensure => installed, - } - } + include nodo::utils::http if !defined(Package['git']) { package { 'git': |