diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/xl2tpd | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/xl2tpd')
-rw-r--r-- | community/xl2tpd/PKGBUILD | 49 | ||||
-rw-r--r-- | community/xl2tpd/ipparam.patch | 36 | ||||
-rw-r--r-- | community/xl2tpd/options.l2tpd | 24 | ||||
-rw-r--r-- | community/xl2tpd/xl2tpd.conf.client-example | 19 | ||||
-rw-r--r-- | community/xl2tpd/xl2tpd.conf.server-example | 21 | ||||
-rw-r--r-- | community/xl2tpd/xl2tpd.service | 15 | ||||
-rw-r--r-- | community/xl2tpd/xl2tpd.tmpfiles | 1 |
7 files changed, 0 insertions, 165 deletions
diff --git a/community/xl2tpd/PKGBUILD b/community/xl2tpd/PKGBUILD deleted file mode 100644 index 2c513c4fb..000000000 --- a/community/xl2tpd/PKGBUILD +++ /dev/null @@ -1,49 +0,0 @@ -# $Id: PKGBUILD 91508 2013-05-23 10:16:34Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Hengfu <rhfcaesar@gmail.com> - -pkgname=xl2tpd -pkgver=1.3.1 -pkgrel=3 -pkgdesc="an open source implementation of the L2TP maintained by Xelerance Corporation" -arch=('i686' 'x86_64') -url="http://www.xelerance.com/services/software/xl2tpd/" -license=('GPL') -depends=('ppp') -options=(emptydirs zipman docs) -backup=(etc/ppp/options.l2tpd) -source=($pkgname-$pkgver.tar.gz::https://github.com/xelerance/xl2tpd/archive/v$pkgver.tar.gz - xl2tpd.conf.client-example - xl2tpd.conf.server-example - options.l2tpd - xl2tpd.service - xl2tpd.tmpfiles - ipparam.patch) -md5sums=('38c2461d3562f98b08454ca403706886' - '5f0ae07026e61a3dd15a76fd4144a6d5' - '16ed0886115d4dcc21072cfb847250bb' - 'ed57eb67335cdf246251285dad502cc7' - '219942dd098ce4fdba37d1db327baf57' - '2e95e4fc03e1521ab20fd7e249efab5a' - '4d258a58cc109d5c4d96af8f81d481cf') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - patch -p1 <$srcdir/ipparam.patch - - make KERNELSRC=/usr/src/linux-`uname -r` PREFIX=/usr SBINDIR=/usr/bin -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - - make KERNELSRC=/usr/src/linux-`uname -r` PREFIX=/usr DESTDIR=$pkgdir SBINDIR=$pkgdir/usr/bin install - - install -D -m0644 $srcdir/xl2tpd.conf.client-example $pkgdir/etc/xl2tpd/xl2tpd.conf.client-example - install -D -m0644 $srcdir/xl2tpd.conf.server-example $pkgdir/etc/xl2tpd/xl2tpd.conf.server-example - install -D -m0644 $srcdir/options.l2tpd $pkgdir/etc/ppp/options.l2tpd - - install -Dm0644 $srcdir/xl2tpd.service $pkgdir/usr/lib/systemd/system/xl2tpd.service - install -Dm0644 $srcdir/xl2tpd.tmpfiles $pkgdir/usr/lib/tmpfiles.d/xl2tpd.conf -} diff --git a/community/xl2tpd/ipparam.patch b/community/xl2tpd/ipparam.patch deleted file mode 100644 index 9c2fd8400..000000000 --- a/community/xl2tpd/ipparam.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -wbBur xl2tpd-1.2.8/control.c xl2tpd-1.2.8.my/control.c ---- xl2tpd-1.2.8/control.c 2011-02-23 08:10:21.000000000 +0300 -+++ xl2tpd-1.2.8.my/control.c 2011-03-25 21:29:29.896518014 +0300 -@@ -892,8 +892,8 @@ - po = add_opt (po, c->lac->pppoptfile); - } - }; -- po = add_opt (po, "ipparam"); -- po = add_opt (po, IPADDY (t->peer.sin_addr)); -+// po = add_opt (po, "ipparam"); -+// po = add_opt (po, IPADDY (t->peer.sin_addr)); - start_pppd (c, po); - opt_destroy (po); - if (c->lac) -@@ -966,8 +966,8 @@ - po = add_opt (po, "file"); - po = add_opt (po, c->lns->pppoptfile); - } -- po = add_opt (po, "ipparam"); -- po = add_opt (po, IPADDY (t->peer.sin_addr)); -+// po = add_opt (po, "ipparam"); -+// po = add_opt (po, IPADDY (t->peer.sin_addr)); - start_pppd (c, po); - opt_destroy (po); - l2tp_log (LOG_NOTICE, -@@ -1026,8 +1026,8 @@ - po = add_opt (po, c->lac->pppoptfile); - } - }; -- po = add_opt (po, "ipparam"); -- po = add_opt (po, IPADDY (t->peer.sin_addr)); -+// po = add_opt (po, "ipparam"); -+// po = add_opt (po, IPADDY (t->peer.sin_addr)); - start_pppd (c, po); - - /* jz: just show some information */ diff --git a/community/xl2tpd/options.l2tpd b/community/xl2tpd/options.l2tpd deleted file mode 100644 index 3030af4a7..000000000 --- a/community/xl2tpd/options.l2tpd +++ /dev/null @@ -1,24 +0,0 @@ -login -lcp-echo-interval 10 -lcp-echo-failure 2 -noipx - -refuse-pap -refuse-chap -refuse-mschap - -require-mppe -require-mschap-v2 - -nodefaultroute -proxyarp - -#bsdcomp -#deflate -#accomp -#noccp -#nopcomp -#nopredictor1 -#novj -#novjccomp -#debug 7 diff --git a/community/xl2tpd/xl2tpd.conf.client-example b/community/xl2tpd/xl2tpd.conf.client-example deleted file mode 100644 index 7420f940d..000000000 --- a/community/xl2tpd/xl2tpd.conf.client-example +++ /dev/null @@ -1,19 +0,0 @@ -[global] -access control = no -auth file = /etc/ppp/chap-secrets -debug avp = no -debug network = no -debug packet = no -debug state = no -debug tunnel = no - -[lac <name>] -lns = <host> -redial = yes -redial timeout = 5 -require chap = yes -require authentication = no -ppp debug = no -pppoptfile = /etc/ppp/peers/<ppp-opts> -require pap = no -autodial = yes diff --git a/community/xl2tpd/xl2tpd.conf.server-example b/community/xl2tpd/xl2tpd.conf.server-example deleted file mode 100644 index a967a3d5f..000000000 --- a/community/xl2tpd/xl2tpd.conf.server-example +++ /dev/null @@ -1,21 +0,0 @@ -[global] -access control = yes -auth file = /etc/ppp/chap-secrets -debug avp = no -debug network = no -debug packet = no -debug state = no -debug tunnel = no - -[lns <name>] -require chap = yes -ppp debug = no -pppoptfile = /etc/ppp/options.l2tpd -require pap = no -assign ip = yes -hostname = <hostname> -ip range = <range> -local ip = <ip> -challenge = no -lac = <lacs> -require authentication = no diff --git a/community/xl2tpd/xl2tpd.service b/community/xl2tpd/xl2tpd.service deleted file mode 100644 index e55b9cb12..000000000 --- a/community/xl2tpd/xl2tpd.service +++ /dev/null @@ -1,15 +0,0 @@ -[Unit] -Description=Level 2 Tunnel Protocol Daemon (L2TP) -After=syslog.target network.target -After=ipsec.service -# Some ISPs in Russia use l2tp without IPsec, so don't insist anymore -#Wants=ipsec.service - -[Service] -Type=simple -PIDFile=/run/xl2tpd/xl2tpd.pid -ExecStart=/usr/bin/xl2tpd -D -Restart=on-abort - -[Install] -WantedBy=multi-user.target diff --git a/community/xl2tpd/xl2tpd.tmpfiles b/community/xl2tpd/xl2tpd.tmpfiles deleted file mode 100644 index 139680eb2..000000000 --- a/community/xl2tpd/xl2tpd.tmpfiles +++ /dev/null @@ -1 +0,0 @@ -d /var/run/xl2tpd 0755 root root - |