mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-firewall/nftables: fixing the rules creating bug 634804
Bug: 634804 Package-Manager: Portage-2.3.8, Repoman-2.3.3
This commit is contained in:
@@ -72,13 +72,13 @@ pkg_postinst() {
|
||||
local save_file
|
||||
save_file="${EROOT%/}/var/lib/nftables/rules-save"
|
||||
|
||||
elog "In order for the nftables-restore systemd service to start, "
|
||||
elog "the file, ${save_file}, must exist. To create this "
|
||||
elog "file run the following command: "
|
||||
elog ""
|
||||
elog " touch '${save_file}'"
|
||||
elog ""
|
||||
elog "Afterwards, the nftables-restore service should be manually started "
|
||||
elog "to ensure firewall changes are stored on system shutdown. The "
|
||||
elog "systemd service will function normally thereafter."
|
||||
# In order for the nftables-restore systemd service to start
|
||||
# the save_file must exist.
|
||||
if [[ ! -f ${save_file} ]]; then
|
||||
touch ${save_file}
|
||||
fi
|
||||
|
||||
elog "If you are creating firewall rules before the next system restart "
|
||||
elog "the nftables-restore service must be manually started in order to "
|
||||
elog "save those rules on shutdown."
|
||||
}
|
||||
Reference in New Issue
Block a user