Always install python-iptables

We are importing it in RCCN regardless of config
This commit is contained in:
Keith Whyte 2023-08-22 03:30:58 +02:00
parent c749dd35f8
commit dc47d8a206
2 changed files with 6 additions and 6 deletions

View file

@ -633,6 +633,12 @@ schedule { 'never':
dev => true, dev => true,
} }
python::pip { 'python-iptables':
schedule => 'onceweek',
ensure => '1.0.1',
pkgname => 'python-iptables',
}
if $operatingsystem == 'Debian' { if $operatingsystem == 'Debian' {
python::pip { 'twisted': python::pip { 'twisted':
schedule => 'onceweek', schedule => 'onceweek',

View file

@ -30,12 +30,6 @@ class rhizo_base::wifi {
ensure => 'running' ensure => 'running'
} }
python::pip { 'python-iptables':
schedule => 'onceweek',
ensure => '1.0.1',
pkgname => 'python-iptables',
}
file { '/etc/apache2/sites-available/001-portal.conf': file { '/etc/apache2/sites-available/001-portal.conf':
content => template('rhizo_base/portal.conf.erb'), content => template('rhizo_base/portal.conf.erb'),
require => Package['apache2'] require => Package['apache2']