From c932ce5fb961e4b4706137809c4beb077e234719 Mon Sep 17 00:00:00 2001 From: bbruns Date: Sat, 12 Apr 2014 19:59:51 +0000 Subject: [PATCH] I'm not having a good day for typos... --- bin/srfirewall | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/srfirewall b/bin/srfirewall index e09a194..1e088d0 100755 --- a/bin/srfirewall +++ b/bin/srfirewall @@ -42,11 +42,11 @@ source "${FWCONFIGDIR}/ipv6.conf" # The local.conf file can be used to override any of the above files without having to worry # about changes being overwritten when upgrading. Mostly useful for people who use a package # manager. -[[ -e "${FWCONFIGDIR}/local.conf" ]] && source "{FWCONFIGDIR}/local.conf" \ +[[ -e "${FWCONFIGDIR}/local.conf" ]] && source "${FWCONFIGDIR}/local.conf" \ && ${display} GREEN "Found ${FWCONFIGDIR}/local.conf. Loading overrides." -[[ -e "${FWCONFIGDIR}/ipv4/local.conf" ]] && source "{FWCONFIGDIR}/ipv4/local.conf" \ +[[ -e "${FWCONFIGDIR}/ipv4/local.conf" ]] && source "${FWCONFIGDIR}/ipv4/local.conf" \ && ${display} GREEN "Found ${FWCONFIGDIR}/ipv4/local.conf. Loading overrides." -[[ -e "${FWCONFIGDIR}/ipv6/local.conf" ]] && source "{FWCONFIGDIR}/ipv6/local.conf" \ +[[ -e "${FWCONFIGDIR}/ipv6/local.conf" ]] && source "${FWCONFIGDIR}/ipv6/local.conf" \ && ${display} GREEN "Found ${FWCONFIGDIR}/ipv6/local.conf. Loading overrides."