nftables: remove pacman references

This commit is contained in:
Rico 2021-12-21 17:10:30 +01:00
parent 8f894ff955
commit 1b1c5a8502
Signed by: stillbeben
GPG Key ID: AE1066B5BD0B5041
2 changed files with 4 additions and 39 deletions

View File

@ -1,7 +1,6 @@
if node.has_bundle('pacman'):
package = 'pkg_pacman:nftables'
else:
package = 'pkg_apt:nftables'
pkg_apt = {
'nftables': {},
}
directories = {
# used by other bundles
@ -50,7 +49,7 @@ svc_systemd = {
'nftables': {
'needs': {
'file:/etc/nftables.conf',
package,
'pkg_apt:nftables',
},
},
}

View File

@ -1,39 +1,5 @@
from bundlewrap.exceptions import BundleError
defaults = {
'apt': {
'packages': {
'nftables': {},
},
},
'pacman': {
'packages': {
'nftables': {},
# https://github.com/bundlewrap/bundlewrap/issues/688
# 'iptables': {
# 'installed': False,
# 'needed_by': {
# 'pkg_pacman:iptables-nft',
# },
# },
'iptables-nft': {
'needed_by': {
'pkg_pacman:nftables',
},
},
},
},
}
if not node.has_bundle('vmhost'):
# see comment in bundles/vmhost/items.py
defaults['apt']['packages']['iptables'] = {
'installed': False,
'needed_by': {
'pkg_apt:nftables',
},
}
@metadata_reactor.provides(
'nftables/rules/99-port_rules',
)