Franziska Kunsmann
121dfb692c
All checks were successful
bundlewrap/pipeline/head This commit looks good
28 lines
608 B
Python
28 lines
608 B
Python
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'netdata': {},
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
@metadata_reactor
|
|
def iptables(metadata):
|
|
interfaces = metadata.get('netdata/restrict-to-interfaces', set())
|
|
iptables = []
|
|
|
|
if len(interfaces):
|
|
for iface in sorted(interfaces):
|
|
iptables.append(f'iptables -A INPUT -i {iface} -p tcp --dport 19999 -j ACCEPT')
|
|
|
|
else:
|
|
iptables.append('iptables -A INPUT -p tcp --dport 19999 -j ACCEPT')
|
|
|
|
return {
|
|
'iptables': {
|
|
'bundle_rules': {
|
|
'netdata': iptables,
|
|
},
|
|
},
|
|
}
|