2021-12-21 16:10:30 +00:00
|
|
|
pkg_apt = {
|
|
|
|
'nftables': {},
|
|
|
|
}
|
2021-12-21 14:56:24 +00:00
|
|
|
|
|
|
|
directories = {
|
|
|
|
# used by other bundles
|
|
|
|
'/etc/nftables-rules.d': {
|
|
|
|
'purge': True,
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nftables:reload',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
files = {
|
|
|
|
'/etc/nftables.conf': {
|
|
|
|
'needs': {
|
|
|
|
'directory:/etc/nftables-rules.d',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nftables:reload',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/systemd/system/nftables.service.d/bundlewrap.conf': {
|
|
|
|
'source': 'override.conf',
|
|
|
|
'triggers': {
|
|
|
|
'action:systemd-reload',
|
|
|
|
'svc_systemd:nftables:reload',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for ruleset, rules in node.metadata.get('nftables/rules', {}).items():
|
|
|
|
files[f'/etc/nftables-rules.d/{ruleset}'] = {
|
|
|
|
'source': 'rules-template',
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
|
|
|
'rules': rules,
|
|
|
|
},
|
|
|
|
'needed_by': {
|
|
|
|
'svc_systemd:nftables',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nftables:reload',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
svc_systemd = {
|
|
|
|
'nftables': {
|
|
|
|
'needs': {
|
|
|
|
'file:/etc/nftables.conf',
|
2021-12-21 16:10:30 +00:00
|
|
|
'pkg_apt:nftables',
|
2021-12-21 14:56:24 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|