diff options
author | Robert "ar" Gerus <ar@bash.org.pl> | 2013-03-23 07:11:09 +0100 |
---|---|---|
committer | Robert "ar" Gerus <ar@bash.org.pl> | 2013-03-23 07:11:09 +0100 |
commit | 9e00c896b7b9263055da2bda0cca0093720df00b (patch) | |
tree | f37112fef0b068103fd1d9cf194c295b44e212b7 | |
parent | 0087ca63d39b4fefe7f8295b057b4857db6c75da (diff) | |
download | old-firewall-9e00c896b7b9263055da2bda0cca0093720df00b.tar.gz old-firewall-9e00c896b7b9263055da2bda0cca0093720df00b.tar.bz2 old-firewall-9e00c896b7b9263055da2bda0cca0093720df00b.tar.xz old-firewall-9e00c896b7b9263055da2bda0cca0093720df00b.zip |
typo
-rw-r--r-- | fw.globals | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ HOST_AMANOJAKU="10.24.20.250" #ROUTER HOST_KASHA="10.24.0.1" HOST_KASHA_WAN="192.168.0.11" -HOST_KASHA_WAN2="$(/sbin/ip -4 a s dev eth0 | awk '$1 == "inet" && $2 != "192.168.0.11/24" { print $2; exit }') +HOST_KASHA_WAN2="$(/sbin/ip -4 a s dev eth0 | awk '$1 == "inet" && $2 != "192.168.0.11/24" { print $2; exit }')" # will allow us to do things like: if ${HAVE_WAN2}; then ... if [[ -z "${HOST_KASHA_WAN2}" ]]; then HAVE_WAN2="/bin/true" |