diff --git a/TODO b/TODO index adf5ed6..1e92adf 100644 --- a/TODO +++ b/TODO @@ -10,3 +10,5 @@ or at work... * FAQ: bad hostname (checkip) * note about init-scripts. * request from dyndns: http://tinyurl.com/2l3twf + +* check bugs diff --git a/sample-ddclient-wrapper.sh b/sample-ddclient-wrapper.sh new file mode 100755 index 0000000..cf9e138 --- /dev/null +++ b/sample-ddclient-wrapper.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# +# This wrapper should be usefull for people who want to run a postscript with +# multiple arguments. Currently ddclient has a feature which doesn't allow +# multiple arguments. +# This example has been written to be able to update multiple domains with +# multiple login. It expects a /etc/ddclient/ddclient-domain2.conf with the +# configuration of the extra domain + +# the second domain who has to be updated +: ${SECONDCONFIG:=/etc/ddclient/ddclient-domain2.conf} +# ddclient adds the new IP as argument +IP=$1 + +ddclient -ip ${IP} -file ${SECONDCONFIG} -daemon 0