From 4739a873313573c72366e77e606ef2cfe80a5ee6 Mon Sep 17 00:00:00 2001 From: Christoph Date: Sat, 27 Dec 2025 19:38:32 +0100 Subject: [PATCH] install.sh: fix error concerning the file name of /etc/default nft-fw. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4f280e6..8b8e459 100755 --- a/install.sh +++ b/install.sh @@ -18,7 +18,7 @@ install -m 0755 "$REPO_DIR/bin/fw-stop" /usr/local/sbin/fw-stop say "Installing default config (won't overwrite existing)..." if [[ ! -f /etc/default/nft-fw ]]; then - install -m 0644 "$REPO_DIR/etc-default/nft-fw-nd-priv" /etc/default/nft-fw + install -m 0644 "$REPO_DIR/etc-default/nft-fw" /etc/default/nft-fw else say "Config already exists at /etc/default/nft-fw (leaving as-is)." fi