diff options
Diffstat (limited to 'community-testing/miredo')
-rw-r--r-- | community-testing/miredo/PKGBUILD | 49 | ||||
-rw-r--r-- | community-testing/miredo/isatapd.rc.d | 37 | ||||
-rw-r--r-- | community-testing/miredo/miredo-server.rc.d | 37 | ||||
-rw-r--r-- | community-testing/miredo/miredo.install | 8 | ||||
-rw-r--r-- | community-testing/miredo/miredo.rc.d | 37 | ||||
-rw-r--r-- | community-testing/miredo/miredo.service | 11 |
6 files changed, 0 insertions, 179 deletions
diff --git a/community-testing/miredo/PKGBUILD b/community-testing/miredo/PKGBUILD deleted file mode 100644 index 4825572df..000000000 --- a/community-testing/miredo/PKGBUILD +++ /dev/null @@ -1,49 +0,0 @@ -# $Id: PKGBUILD 72555 2012-06-16 17:09:54Z dreisner $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> - -pkgname=miredo -pkgver=1.2.5 -pkgrel=2 -pkgdesc="Teredo client and server." -arch=('i686' 'x86_64') -url="http://www.remlab.net/miredo/" -license=('GPL') -depends=('judy' 'iproute2' 'libcap') -backup=('etc/miredo/miredo.conf' - 'etc/miredo/client-hook') -options=('!libtool') -source=(http://www.remlab.net/files/${pkgname}/${pkgname}-${pkgver}.tar.xz - isatapd.rc.d - miredo.install - miredo.rc.d - miredo-server.rc.d - miredo.service) -md5sums=('5114debbf9fcab5d292176e4548f8cd1' - '51ab6d091192605ee9206944869cb2ab' - 'd1b655d7a851cdb46c91c3418ed1962f' - 'c5a9be5c3175fecec387f1710bfd2788' - '319aba1ae06349b76cb25fda0dba60a9' - '3216d47d5aa979706b17b72d8b6e19b0') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/lib \ - --with-Judy - make - make DESTDIR="$pkgdir" install - - install -D -m755 $srcdir/miredo.rc.d $pkgdir/etc/rc.d/miredo - install -D -m755 $srcdir/miredo-server.rc.d $pkgdir/etc/rc.d/miredo-server - install -D -m755 $srcdir/isatapd.rc.d $pkgdir/etc/rc.d/isatapd - sed -i 's#/sbin/ip#/usr/sbin/ip#' $pkgdir/etc/miredo/client-hook - - # avoid conflict with filesystem>=2012.06 - rmdir "$pkgdir/var/run" "$pkgdir/var" - - install -Dm644 "$srcdir/miredo.service" "$pkgdir/usr/lib/systemd/system/miredo.service" -} diff --git a/community-testing/miredo/isatapd.rc.d b/community-testing/miredo/isatapd.rc.d deleted file mode 100644 index fa7bbd708..000000000 --- a/community-testing/miredo/isatapd.rc.d +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/isatapd` -case "$1" in - start) - stat_busy "Starting userspace ISATAP client" - if [ -z "$PID" ]; then - /usr/sbin/isatapd - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - add_daemon isatapd - stat_done - fi - ;; - stop) - stat_busy "Stopping userspace ISATAP client" - [ ! -z "$PID" ] && kill $PID &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon isatapd - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community-testing/miredo/miredo-server.rc.d b/community-testing/miredo/miredo-server.rc.d deleted file mode 100644 index d05513b23..000000000 --- a/community-testing/miredo/miredo-server.rc.d +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/miredo-server` -case "$1" in - start) - stat_busy "Starting teredo protocol server" - if [ -z "$PID" ]; then - /usr/sbin/miredo-server - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - add_daemon miredo-server - stat_done - fi - ;; - stop) - stat_busy "Stopping teredo protocol server" - [ ! -z "$PID" ] && kill $PID &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon miredo-server - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community-testing/miredo/miredo.install b/community-testing/miredo/miredo.install deleted file mode 100644 index 338459fb3..000000000 --- a/community-testing/miredo/miredo.install +++ /dev/null @@ -1,8 +0,0 @@ -post_remove() { - - # clean up just in case - rm -f /var/run/miredo.pid - rm -f /var/run/miredo-server.pid - rm -f /var/run/isatapd.pid -} - diff --git a/community-testing/miredo/miredo.rc.d b/community-testing/miredo/miredo.rc.d deleted file mode 100644 index 500374b12..000000000 --- a/community-testing/miredo/miredo.rc.d +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/sbin/miredo` -case "$1" in - start) - stat_busy "Starting teredo protocol client" - if [ -z "$PID" ]; then - /usr/sbin/miredo - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - add_daemon miredo - stat_done - fi - ;; - stop) - stat_busy "Stopping teredo protocol client" - [ ! -z "$PID" ] && kill $PID &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon miredo - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community-testing/miredo/miredo.service b/community-testing/miredo/miredo.service deleted file mode 100644 index 299a887de..000000000 --- a/community-testing/miredo/miredo.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=Teredo IPv6 Tunneling Daemon -After=network.target - -[Service] -ExecStartPre=/usr/sbin/miredo-checkconf /etc/miredo/miredo.conf -ExecStart=/usr/sbin/miredo -f -ExecReload=/bin/kill -HUP $MAINPID - -[Install] -WantedBy=multi-user.target
\ No newline at end of file |