ddclient: unmaintained

This commit is contained in:
Juergen Daubert 2007-04-10 19:39:51 +02:00
parent a13a7c5ed4
commit b8b4775167
4 changed files with 0 additions and 55 deletions

View File

@ -1,7 +0,0 @@
drwxr-xr-x root/root etc/
-rw------- root/root etc/ddclient.conf
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/ddclient
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/ddclient

View File

@ -1,2 +0,0 @@
7771223faa1728129b04e71c2d2ba094 ddclient
41a3307ca32cce0f67c0f3281c5f17f2 ddclient-3.7.0.tar.bz2

View File

@ -1,20 +0,0 @@
# Description: Utility for maintaining your dynamic DNS entries
# Maintainer: Jay Dolan, jdolan at jdolan dot dyndns dot org
# URL: http://ddclient.sf.net
# Depends on:
name=ddclient
version=3.7.0
release=1
source=(http://dl.sf.net/$name/$name-$version.tar.bz2 ddclient)
build(){
cd $name-$version
install -d $PKG/usr/sbin
install ddclient $PKG/usr/sbin/
sed -i "s|/etc/ddclient/|/etc/|" $PKG/usr/sbin/ddclient
install -d $PKG/etc/rc.d
install ../ddclient $PKG/etc/rc.d/ddclient
install -m 600 sample-etc_ddclient.conf $PKG/etc/ddclient.conf
}

View File

@ -1,26 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/ddclient Start or stop dynamic DNS service
#
export COLUMNS=9999
case "$1" in
start)
/usr/sbin/ddclient -daemon 300
;;
stop)
killall -q ddclient
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: ddclient start|stop|restart"
exit 1
esac
exit 0
#End of file