diff options
author | Britney Fransen <brfransen@gmail.com> | 2014-04-16 17:34:30 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2014-04-16 17:34:30 (GMT) |
commit | e5964f928b92018a912288591d43d44b64a26c22 (patch) | |
tree | 16c73e0c7db5b4fa8f2c2b40b768e7b04da203e5 /abs/extra/ddclient/ddclient.rc | |
parent | 8e41fcf367697e694aa00b9c6e5e0613803548b0 (diff) | |
download | linhes_pkgbuild-e5964f928b92018a912288591d43d44b64a26c22.zip linhes_pkgbuild-e5964f928b92018a912288591d43d44b64a26c22.tar.gz linhes_pkgbuild-e5964f928b92018a912288591d43d44b64a26c22.tar.bz2 |
ddclient: update to 3.8.2. refs #961
Diffstat (limited to 'abs/extra/ddclient/ddclient.rc')
-rw-r--r-- | abs/extra/ddclient/ddclient.rc | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/abs/extra/ddclient/ddclient.rc b/abs/extra/ddclient/ddclient.rc deleted file mode 100644 index a9093f7..0000000 --- a/abs/extra/ddclient/ddclient.rc +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -[ -f /etc/conf.d/ddclient ] && . /etc/conf.d/ddclient - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/ddclient` -case "$1" in - start) - stat_busy "Starting ddclient" - [ -z "$PID" ] && /usr/sbin/ddclient ${EXTRA_ARGS} - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon ddclient - stat_done - fi - ;; - stop) - stat_busy "Stopping ddclient" - [ -n "$PID" ] && kill -15 $PID >/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon ddclient - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac |