summaryrefslogtreecommitdiff
path: root/ddclient
diff options
context:
space:
mode:
authorMikhail Kolesnik <mike@openbunker.org>2007-11-14 15:17:19 +0200
committerMikhail Kolesnik <mike@openbunker.org>2007-11-14 15:17:19 +0200
commit010574536cada58361ea909c65a559148325c458 (patch)
tree86238c28b97290b19ab6e8ffc33c57ac14c20541 /ddclient
parent3bdd8c25f66b78a5fb6a2ea2185e06b6d4efe578 (diff)
downloadcontrib-010574536cada58361ea909c65a559148325c458.tar.gz
contrib-010574536cada58361ea909c65a559148325c458.tar.xz
Revert "ddclient: initial commit"
This reverts commit 3bdd8c25f66b78a5fb6a2ea2185e06b6d4efe578. removed ddclient as it has a few dependencies missing in contrib.
Diffstat (limited to 'ddclient')
-rw-r--r--ddclient/.footprint10
-rw-r--r--ddclient/.md5sum2
-rw-r--r--ddclient/Pkgfile21
-rw-r--r--ddclient/ddclient26
4 files changed, 0 insertions, 59 deletions
diff --git a/ddclient/.footprint b/ddclient/.footprint
deleted file mode 100644
index 0b9649dbd..000000000
--- a/ddclient/.footprint
+++ /dev/null
@@ -1,10 +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
-drwxr-xr-x root/root var/
-drwxr-xr-x root/root var/cache/
-drwxr-xr-x root/root var/cache/ddclient/
diff --git a/ddclient/.md5sum b/ddclient/.md5sum
deleted file mode 100644
index 48fbb1769..000000000
--- a/ddclient/.md5sum
+++ /dev/null
@@ -1,2 +0,0 @@
-7603ca8c8facb44fd85f8174add4139a ddclient
-f6a55bc68cf73ffe7e80d2fa5cd44f85 ddclient-3.7.3.tar.bz2
diff --git a/ddclient/Pkgfile b/ddclient/Pkgfile
deleted file mode 100644
index 640937a99..000000000
--- a/ddclient/Pkgfile
+++ /dev/null
@@ -1,21 +0,0 @@
-# Description: Utility for maintaining your dynamic DNS entries
-# URL: http://ddclient.sf.net
-# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
-# Packager: Jay Dolan, jdolan at jdolan dot dyndns dot org
-# Depends on: p5-io-socket-ssl
-
-name=ddclient
-version=3.7.3
-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 -d $PKG/var/cache/ddclient
- install ../ddclient $PKG/etc/rc.d/ddclient
- install -m 600 sample-etc_ddclient.conf $PKG/etc/ddclient.conf
-}
diff --git a/ddclient/ddclient b/ddclient/ddclient
deleted file mode 100644
index 709051e6b..000000000
--- a/ddclient/ddclient
+++ /dev/null
@@ -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 -syslog -daemon 0
- ;;
- stop)
- killall -q ddclient
- ;;
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "Usage: ddclient start|stop|restart"
- exit 1
-esac
-
-exit 0
-
-#End of file

Generated by cgit