From 7785093e067cee7377ca5e674050213d81d39040 Mon Sep 17 00:00:00 2001 From: Keith Whyte Date: Fri, 26 Feb 2021 05:08:27 +0100 Subject: [PATCH] install nmap on Debian 9 Debian 9 has no ncat package, but ncat comes with nmap --- modules/rhizo_base/manifests/packages.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/rhizo_base/manifests/packages.pp b/modules/rhizo_base/manifests/packages.pp index 6deb382..1550ea5 100644 --- a/modules/rhizo_base/manifests/packages.pp +++ b/modules/rhizo_base/manifests/packages.pp @@ -30,7 +30,7 @@ class rhizo_base::packages::common { 'sngrep', 'rrdtool', 'dnsmasq', 'joe', 'curl', 'htop', 'screen', 'iperf3', 'websocketd', 'fping', 'mtr-tiny', 'openssh-server', 'telnet', 'netcat-traditional', 'python-unidecode', 'python-dateutil', 'python-yaml', 'python-formencode', - 'python-smpplib', 'python-psycopg2', 'python-pysqlite2', 'ncat' ]: + 'python-smpplib', 'python-psycopg2', 'python-pysqlite2' ]: ensure => installed, require => Class['rhizo_base::apt'], } @@ -44,7 +44,7 @@ class rhizo_base::packages::common { class rhizo_base::packages::buster inherits rhizo_base::packages::common { - package { ['libcdk5nc6', 'msmtp-mta' ]: + package { ['libcdk5nc6', 'msmtp-mta', 'ncat' ]: ensure => installed, require => Class['rhizo_base::apt'], } @@ -62,7 +62,7 @@ class rhizo_base::packages::buster inherits rhizo_base::packages::common { class rhizo_base::packages::stretch inherits rhizo_base::packages::common { - package { ['libcdk5' ]: + package { ['libcdk5', 'nmap' ]: ensure => installed, require => Class['rhizo_base::apt'], }