From 23bc019a82b75f69fb31908153b2b2abdde0d578 Mon Sep 17 00:00:00 2001 From: "W. van den Akker" Date: Tue, 14 Nov 2017 08:47:48 +0100 Subject: [PATCH] Add OpenWRT options. Signed-off-by: W. van den Akker Signed-off-by: Tom Eastep --- Shorewall/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Shorewall/install.sh b/Shorewall/install.sh index 5f02d2e54..917fb619a 100755 --- a/Shorewall/install.sh +++ b/Shorewall/install.sh @@ -213,6 +213,8 @@ if [ -z "$BUILD" ]; then BUILD=suse elif [ -f /etc/arch-release ] ; then BUILD=archlinux + elif [ -f ${CONFDIR}/openwrt_release ] ; then + BUILD=openwrt else BUILD=linux fi @@ -264,6 +266,9 @@ case "$HOST" in archlinux) echo "Installing ArchLinux-specific configuration..." ;; + openwrt) + echo "Installing OpenWRT-specific configuration..." + ;; linux) ;; *)