diff options
Diffstat (limited to 'social/tinc')
-rw-r--r-- | social/tinc/PKGBUILD | 33 | ||||
-rw-r--r-- | social/tinc/tincd.conf | 2 | ||||
-rw-r--r-- | social/tinc/tincd.rcd | 48 |
3 files changed, 0 insertions, 83 deletions
diff --git a/social/tinc/PKGBUILD b/social/tinc/PKGBUILD deleted file mode 100644 index 87d3415e9..000000000 --- a/social/tinc/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -pkgname=tinc -pkgver=1.0.16 -pkgrel=3 -pkgdesc="VPN (Virtual Private Network) daemon" -arch=(i686 x86_64 mips64el) -url="http://www.tinc-vpn.org/" -license=('GPL') -depends=('lzo2' 'zlib' 'openssl') -backup=(etc/conf.d/tincd.conf) -source=(http://www.tinc-vpn.org/packages/tinc-$pkgver.tar.gz - tincd.conf - tincd.rcd) -md5sums=('f1c7ed94878725fb2cf4efb02bf160da' - 'd4a42b4a474448c64dc8f5100480f569' - '89a91a80c1dee4b365958bd9e6242d5a') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install - - install -d $pkgdir/etc/{tinc,rc.d,conf.d} - - install -Dm755 $srcdir/tincd.rcd $pkgdir/etc/rc.d/tincd - install -Dm755 $srcdir/tincd.conf $pkgdir/etc/conf.d/tincd.conf -} diff --git a/social/tinc/tincd.conf b/social/tinc/tincd.conf deleted file mode 100644 index e86139b44..000000000 --- a/social/tinc/tincd.conf +++ /dev/null @@ -1,2 +0,0 @@ -NETNAME=yournetname -OPTIONS="-R -U nobody -L" diff --git a/social/tinc/tincd.rcd b/social/tinc/tincd.rcd deleted file mode 100644 index 16f39f8ca..000000000 --- a/social/tinc/tincd.rcd +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -daemon_name=tincd - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/conf.d/${daemon_name}.conf - -PIDFILE=/var/run/tinc.${NETNAME} -[ -f "${PIDFILE}" ] && PID=$(<${PIDFILE}) - -case "$1" in - start) - stat_busy "Starting ${daemon_name}" - [ -z "$PID" ] && \ - /usr/sbin/tincd -n ${NETNAME} \ - ${OPTIONS} \ - --pidfile=${PIDFILE} &> /dev/null - - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon ${daemon_name} - stat_done - fi - ;; - stop) - stat_busy "Stopping ${daemon_name}" - [ ! -z "$PID" ] && /usr/sbin/tincd -n ${NETNAME} -k - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon ${daemon_name} - stat_done - fi - ;; - restart) - $0 stop - sleep 3 - $0 start - ;; - reload) - [ ! -z "$PID" ] && /usr/sbin/tincd -n ${NETNAME} -k HUP - ;; - *) - echo "usage: $0 {start|stop|restart|reload}" -esac -exit 0 |