Added ddclient wrapper script

git-svn-id: svn+ssh://svn.code.sf.net/p/ddclient/code/trunk@104 3873ddee-7413-0410-b6c4-c2c57c1ab35a
This commit is contained in:
wimpunk 2008-11-19 21:04:16 +00:00
parent bd74f3ff0f
commit f5721bd42f
2 changed files with 17 additions and 0 deletions

2
TODO
View file

@ -10,3 +10,5 @@ or at work...
* FAQ: bad hostname (checkip) * FAQ: bad hostname (checkip)
* note about init-scripts. * note about init-scripts.
* request from dyndns: http://tinyurl.com/2l3twf * request from dyndns: http://tinyurl.com/2l3twf
* check bugs

15
sample-ddclient-wrapper.sh Executable file
View file

@ -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