diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2001-09-16 01:02:46 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2001-09-16 01:02:46 +0000 |
commit | db3dca6dbd32fe6ea3d51bc037e6f9cdc66c343b (patch) | |
tree | 29d590ca0bc9e66d81bc3218a0684c2daf9d4a68 /dns/ddup/files/patch-ddupcron.sh | |
parent | Fix compilation problems. (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_4_0'.release/4.4.0
Notes
Notes:
svn path=/head/; revision=47856
svn path=/tags/RELEASE_4_4_0/; revision=47857; tag=release/4.4.0
Diffstat (limited to 'dns/ddup/files/patch-ddupcron.sh')
-rw-r--r-- | dns/ddup/files/patch-ddupcron.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/dns/ddup/files/patch-ddupcron.sh b/dns/ddup/files/patch-ddupcron.sh deleted file mode 100644 index ed354d7afff8..000000000000 --- a/dns/ddup/files/patch-ddupcron.sh +++ /dev/null @@ -1,29 +0,0 @@ ---- ddupcron.sh.orig Mon Oct 23 02:11:48 2000 -+++ ddupcron.sh Thu Nov 2 14:16:39 2000 -@@ -2,19 +2,23 @@ - - # Define the host to be updated as 1st arguement to script - if [ -z $1 ]; then -- echo "Usage: ddupcron.sh hostname" -+ echo "Usage: ddupcron.sh hostname [interface]" - exit - else - HOST=$1 - fi - # Define interface to grep address from --IFACE="eth0" -+if [ -z $2 ]; then -+ IFACE=fxp0 -+else -+ IFACE=$2 -+fi - IFCHECK=$(/sbin/ifconfig $IFACE|grep ask|awk '{print $2}'|cut -d ':' -f2) - # Define where we should store last IP - IPFILE="/tmp/ddupip" - IPCHECK=$(cat $IPFILE) - # Define path to ddup and ddup arguments (except --host) --DDUP_PATH="/home/ddup/ddup" -+DDUP_PATH="!!PREFIX!!/sbin/ddup" - DDUP_ARGS="--debug" - - |