diff options
author | Dhaby Xiloj <slack.dhabyx@gmail.com> | 2010-05-11 22:54:59 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-11 22:54:59 +0200 |
commit | 16e7bde2ecb5f2c8b735223402d7b04b9c125b81 (patch) | |
tree | 4e7ee1f9cd69241f6a0854c88f93c6709ab4f20d /network/noip/rc.noip.new | |
parent | ed02b9b2702084701a64a2930fd59af568277f6e (diff) | |
download | slackbuilds-16e7bde2ecb5f2c8b735223402d7b04b9c125b81.tar.gz |
network/noip: Added to 12.1 repository
Diffstat (limited to 'network/noip/rc.noip.new')
-rw-r--r-- | network/noip/rc.noip.new | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/network/noip/rc.noip.new b/network/noip/rc.noip.new new file mode 100644 index 0000000000..259c73ca37 --- /dev/null +++ b/network/noip/rc.noip.new @@ -0,0 +1,82 @@ +#!/bin/sh +# +# /etc/rc.d/rc.noip +# +# start/stop/restart the no-ip.com Dynamic dns client daemon +# +# To make noip client start automatically at boot, make this +# file executable: chmod 755 /etc/rc.d/rc.noip +# and add this lines to /etc/rc.d/rc.local +# +# if [ -x /etc/rc.d/rc.noip ]; then +# . /etc/rc.d/rc.noip start +# fi +# +# Written by slack.dhabyx@gmail.com and tested on Slackware 12.1 +# + +NOIP_PATH='/usr/bin' +NOIPCONFIG='/etc/no-ip2.conf' + +config_exist() { + if [ ! -f $NOIPCONFIG ] ; then + echo "Please create the configuration file" + echo "$NOIP_PATH/noip2 -C -c $NOIPCONFIG" + exit 0; + fi +} + +start() { + config_exist + if ! /sbin/route -n | grep "^0.0.0.0" 1> /dev/null ; then + echo "Gateway not defined yet, please init the network services." + exit 0; + fi + echo "Starting no-ip client daemon: " + /usr/bin/noip2 -c $NOIPCONFIG +} + +stop() { + config_exist + if $NOIP_PATH/noip2 -S -c $NOIPCONFIG 2>&1 | grep Process 1> /dev/null ; then + echo "Stopping no-ip client daemon: "; + for i in `$NOIP_PATH/noip2 -S -c $NOIPCONFIG 2>&1 | grep Process | awk '{print $2}' | tr -d ','` + do + $NOIP_PATH/noip2 -c $NOIPCONFIG -K $i + done + else + echo "no-ip client daemon is not running" && exit 0 + fi +} + +status() { + config_exist + if $NOIP_PATH/noip2 -S -c $NOIPCONFIG 2>&1 | grep Process 1>/dev/null ; then + echo "no-ip client daemon is running" + else + echo "no-ip client daemon is not runnig" + fi +} + +restart() { + stop + start +} + +case "$1" in + start) + start + ;; + stop) + stop + ;; + status) + status + ;; + restart) + restart + ;; + *) + echo "Usage: $0 {start|stop|status|restart}" + exit 1 +esac |