Packages: Install further utilities

Install sngrep on ubuntu
Install fping and htop in general
This commit is contained in:
Wile E. Coyote 2018-11-18 13:07:34 +00:00
parent 959d9524a2
commit 01908da55d
2 changed files with 9 additions and 2 deletions

View file

@ -62,6 +62,13 @@ class rhizo_base::apt::ubuntu inherits rhizo_base::apt::common {
repos => 'main',
key_source => 'https://deb.nodesource.com/gpgkey/nodesource.gpg.key'
}
apt::source { 'irontec':
location => 'http://packages.irontec.com/ubuntu',
release => 'precise',
repos => 'main',
key_source => 'https://packages.irontec.com/public.key'
}
}
class rhizo_base::apt::debian inherits rhizo_base::apt::common {

View file

@ -23,6 +23,7 @@ class rhizo_base::packages::common {
}
package { ['mosh', 'git', 'openvpn', 'lm-sensors', 'runit', 'sqlite3',
'htop', 'fping', 'sngrep',
'libffi-dev', 'apcupsd', 'expect', 'gawk', 'swig', 'g++',
'python-smpplib', 'libcdk5', 'websocketd', 'osmo-meas' ]:
schedule => 'weekly',
@ -65,8 +66,7 @@ class rhizo_base::packages::debian inherits rhizo_base::packages::common {
'python-pysqlite2', 'php5', 'php5-pgsql',
'php5-curl', 'php5-cli', 'php5-gd',
'python-yaml', 'python-formencode', 'python-unidecode',
'python-dateutil', 'sudo', 'apt-transport-https',
'sngrep' ]:
'python-dateutil', 'sudo', 'apt-transport-https' ]:
schedule => 'weekly',
ensure => installed,
require => Class['rhizo_base::apt'],