diff options
Diffstat (limited to 'gentoo/net-dialup/accel-pptp/files')
-rw-r--r-- | gentoo/net-dialup/accel-pptp/files/options.pptp | 32 | ||||
-rw-r--r-- | gentoo/net-dialup/accel-pptp/files/pptpd-confd | 5 | ||||
-rwxr-xr-x | gentoo/net-dialup/accel-pptp/files/pptpd-init | 21 |
3 files changed, 0 insertions, 58 deletions
diff --git a/gentoo/net-dialup/accel-pptp/files/options.pptp b/gentoo/net-dialup/accel-pptp/files/options.pptp deleted file mode 100644 index d61ab80c..00000000 --- a/gentoo/net-dialup/accel-pptp/files/options.pptp +++ /dev/null @@ -1,32 +0,0 @@ -# -# Lock the port -# -#lock - -# -# We don't need the tunnel server to authenticate itself -# -noauth - -# -# Turn off transmission protocols we know won't be used -# -nobsdcomp -nodeflate - -# -# We want MPPE -# -require-mppe - -# -# We want a sane mtu/mru -# -mtu 1437 -mru 1437 - -# -# Time this thing out of it goes poof -# -lcp-echo-failure 10 -lcp-echo-interval 10 diff --git a/gentoo/net-dialup/accel-pptp/files/pptpd-confd b/gentoo/net-dialup/accel-pptp/files/pptpd-confd deleted file mode 100644 index 1169e57f..00000000 --- a/gentoo/net-dialup/accel-pptp/files/pptpd-confd +++ /dev/null @@ -1,5 +0,0 @@ -# Config file for /etc/init.d/pptpd - -# Any extra options you want to pass to pptpd -# on start-up should be put here. -PPTPD_OPTS="" diff --git a/gentoo/net-dialup/accel-pptp/files/pptpd-init b/gentoo/net-dialup/accel-pptp/files/pptpd-init deleted file mode 100755 index c0537206..00000000 --- a/gentoo/net-dialup/accel-pptp/files/pptpd-init +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript - -depend() { - need net -} - -start() { - ebegin "Starting pptpd" - modprobe pptp - start-stop-daemon --start --quiet --exec /usr/sbin/pptpd -- ${PPTPD_OPTS} - eend $? -} - -stop() { - ebegin "Stopping pptpd" - start-stop-daemon --stop --quiet --pidfile /var/run/pptpd.pid - result=$? - start-stop-daemon --stop --quiet --oknodo --exec /usr/sbin/pptpctrl - result=$(( $result + $? )) - eend $result -} |