From: hackbard Date: Sun, 14 Dec 2003 01:00:35 +0000 (+0000) Subject: only process if ip changed X-Git-Url: https://hackdaworld.org/gitweb/?p=scripts%2Fscripts.git;a=commitdiff_plain;h=976e17bc72a52413bac776f93175d46fa0b2fdf8 only process if ip changed --- diff --git a/unreal_update.sh b/unreal_update.sh index 876484c..6c30955 100755 --- a/unreal_update.sh +++ b/unreal_update.sh @@ -9,9 +9,15 @@ BINARY="ircd" NEWIP="`host hackdaworld.dyndns.org | awk '{ print $4 }'`" -# HDWTAG dirty ... but easy :) +# get CURRENTIP +CURRENTIP="`grep HDWTAG $CONFIGDIR/unrealircd.conf | awk '{ print $2 }'`" + +if [ "$CURRENTIP" != "$NEWIP" ]; then + cat $CONFIGDIR/unrealircd.conf | \ sed "s/.* HDWTAG .*/hostname ::ffff:$NEWIP; \/* HDWTAG *\//" > $CONFIGDIR/temp mv $CONFIGDIR/temp $CONFIGDIR/unrealircd.conf killall -HUP $BINARY +fi +