diff options
Diffstat (limited to 'lib/dnspython')
-rwxr-xr-x | lib/dnspython/examples/ddns.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |