From e8f9ee64a71d788a8ed1e1d7d5715f248c4fa107 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 2 Dec 2010 10:18:39 +0100 Subject: fix ѕome == to correct shell test in commented stuff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/dnspython/examples/ddns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/dnspython/examples') diff --git a/lib/dnspython/examples/ddns.py b/lib/dnspython/examples/ddns.py index 84814b73cf..27a5b932f4 100755 --- a/lib/dnspython/examples/ddns.py +++ b/lib/dnspython/examples/ddns.py @@ -16,7 +16,7 @@ # # DEVICE=$1 # -# if [ "X${DEVICE}" == "Xeth0" ]; then +# if [ "X${DEVICE}" = "Xeth0" ]; then # IPADDR=`LANG= LC_ALL= ifconfig ${DEVICE} | grep 'inet addr' | # awk -F: '{ print $2 } ' | awk '{ print $1 }'` # /usr/local/sbin/ddns.py $IPADDR -- cgit