summaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2010-02-06 22:39:16 +0100
committertnut <thierryn1 at hispeed dot ch>2010-02-06 22:39:16 +0100
commit23fc9998447837de25bfd874e9d0fe11d0a63b33 (patch)
treecc575b483bcb9bfd9fef33cd34fe76be281b3d87 /extra
parent1def174fca8882e254fabc949f0c285e8ef04d65 (diff)
downloadnutyx-extra-23fc9998447837de25bfd874e9d0fe11d0a63b33.tar.gz
nutyx-extra-23fc9998447837de25bfd874e9d0fe11d0a63b33.tar.bz2
nutyx-extra-23fc9998447837de25bfd874e9d0fe11d0a63b33.tar.xz
nutyx-extra-23fc9998447837de25bfd874e9d0fe11d0a63b33.zip
noip, déplacé dans base
Diffstat (limited to 'extra')
-rw-r--r--extra/noip/.footprint22
-rw-r--r--extra/noip/.md5sum2
-rw-r--r--extra/noip/Pkgfile34
-rwxr-xr-xextra/noip/noip21
4 files changed, 0 insertions, 79 deletions
diff --git a/extra/noip/.footprint b/extra/noip/.footprint
deleted file mode 100644
index 86e4768a3..000000000
--- a/extra/noip/.footprint
+++ /dev/null
@@ -1,22 +0,0 @@
-drwxr-xr-x root/root etc/
-drwxr-xr-x root/root etc/noip/
--rw-r--r-- root/root etc/noip/no-ip2.conf (EMPTY)
-drwxr-xr-x root/root etc/rc.d/
-drwxr-xr-x root/root etc/rc.d/init.d/
--rwxr-xr-x root/root etc/rc.d/init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc0.d/
-lrwxrwxrwx root/root etc/rc.d/rc0.d/K05noip -> ../init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc1.d/
-lrwxrwxrwx root/root etc/rc.d/rc1.d/K05noip -> ../init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc2.d/
-drwxr-xr-x root/root etc/rc.d/rc3.d/
-lrwxrwxrwx root/root etc/rc.d/rc3.d/S50noip -> ../init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc4.d/
-lrwxrwxrwx root/root etc/rc.d/rc4.d/S50noip -> ../init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc5.d/
-lrwxrwxrwx root/root etc/rc.d/rc5.d/S50noip -> ../init.d/noip
-drwxr-xr-x root/root etc/rc.d/rc6.d/
-lrwxrwxrwx root/root etc/rc.d/rc6.d/K05noip -> ../init.d/noip
-drwxr-xr-x root/root usr/
-drwxr-xr-x root/root usr/bin/
--rwxr-xr-x root/root usr/bin/noip2
diff --git a/extra/noip/.md5sum b/extra/noip/.md5sum
deleted file mode 100644
index 9e1affdf5..000000000
--- a/extra/noip/.md5sum
+++ /dev/null
@@ -1,2 +0,0 @@
-98937b041307821ac7f8b574ca7ae7d2 noip
-3b0f5f2ff8637c73ab337be403252a60 noip-duc-linux.tar.gz
diff --git a/extra/noip/Pkgfile b/extra/noip/Pkgfile
deleted file mode 100644
index b187f6bdd..000000000
--- a/extra/noip/Pkgfile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Description: noip Dynamic Update client
-# URL: http://ww.no-ip.com/
-# Maintainer: NuTyX coreteam
-# Packager: thierryn1 at hispeed dot ch
-# Depends on:
-
-name=noip
-version=2.1.9
-release=1
-source=("http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz"\
- noip)
-
-build()
-{
- cd $name-$version-$release
- sed -i 's/PREFIX=\//PREFIX=/' Makefile
- make
- install -d $PKG/usr/bin
- install -d $PKG/etc/noip
- touch $PKG/etc/noip/no-ip2.conf
- cp noip2 $PKG/usr/bin/
- install -D -m755 ../noip $PKG/etc/rc.d/init.d/noip
- for i in 0 1 2 3 4 5 6
- do mkdir -p $PKG/etc/rc.d/rc$i.d
- done
- for i in 0 1 6
- do ln -sv ../init.d/noip $PKG/etc/rc.d/rc$i.d/K05noip
- done
- for i in 3 4 5
- do ln -sv ../init.d/noip $PKG/etc/rc.d/rc$i.d/S50noip
- done
-
-# make DESTDIR=$PKG install
-}
diff --git a/extra/noip/noip b/extra/noip/noip
deleted file mode 100755
index e7fb814c5..000000000
--- a/extra/noip/noip
+++ /dev/null
@@ -1,21 +0,0 @@
-##################################################
-#! /bin/sh
-# . /etc/rc.d/init.d/functions # uncomment/modify for your killproc
-case "$1" in
-
- start)
-
- echo "Starting noip2."
- # /usr/local/bin/noip2 -d -U 2
- /usr/bin/noip2 -F -c /etc/noip/no-ip2.conf -d >> /var/log/noip.log 2>&1
- ;;
- stop)
-
- echo "Shutting down noip2."
- /usr/bin/killall -TERM /usr/bin/noip2
- ;;
- *)
- echo "Usage: $0 {start|stop}"
- exit 1
-esac
-exit 0