diff options
author | Alin Năstac <mrness@gentoo.org> | 2007-03-05 10:50:54 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2007-03-05 10:50:54 +0000 |
commit | 3947bdfe92da2e0830296470095f19d4f2f8e61f (patch) | |
tree | ca73b63f0e7c963bd95ee07b8e7b6ae4a70ba1f5 /net-dialup/xl2tpd/files | |
parent | Install docs in /usr/share instead of /share (diff) | |
download | historical-3947bdfe92da2e0830296470095f19d4f2f8e61f.tar.gz historical-3947bdfe92da2e0830296470095f19d4f2f8e61f.tar.bz2 historical-3947bdfe92da2e0830296470095f19d4f2f8e61f.zip |
Version bump (#169123).
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'net-dialup/xl2tpd/files')
-rw-r--r-- | net-dialup/xl2tpd/files/digest-xl2tpd-1.1.08 | 3 | ||||
-rw-r--r-- | net-dialup/xl2tpd/files/l2tpd-init | 32 | ||||
-rw-r--r-- | net-dialup/xl2tpd/files/xl2tpd-init | 4 |
3 files changed, 5 insertions, 34 deletions
diff --git a/net-dialup/xl2tpd/files/digest-xl2tpd-1.1.08 b/net-dialup/xl2tpd/files/digest-xl2tpd-1.1.08 new file mode 100644 index 000000000000..ad862d596896 --- /dev/null +++ b/net-dialup/xl2tpd/files/digest-xl2tpd-1.1.08 @@ -0,0 +1,3 @@ +MD5 d0c310b7a135b385ab5a61325e56566a xl2tpd-1.1.08.tar.gz 165439 +RMD160 208433daac898e781540dac6ba3658f5a5cfb902 xl2tpd-1.1.08.tar.gz 165439 +SHA256 05c344e134853234c53b58a85cc204a85498b6b1985780a63690f21b2d7a6e24 xl2tpd-1.1.08.tar.gz 165439 diff --git a/net-dialup/xl2tpd/files/l2tpd-init b/net-dialup/xl2tpd/files/l2tpd-init deleted file mode 100644 index b118736cc36b..000000000000 --- a/net-dialup/xl2tpd/files/l2tpd-init +++ /dev/null @@ -1,32 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/files/l2tpd-init,v 1.1 2006/05/30 20:54:12 mrness Exp $ - -depend() { - need net -} - -checkconfig() { - if [[ ! -f /etc/l2tpd/l2tpd.conf ]] ; then - eerror "Missing /etc/l2tpd/l2tpd.conf configuration file!" - eerror "Example configuration file could be found in doc directory." - return 1 - fi - - return 0 -} - -start() { - checkconfig || return 1 - - ebegin "Starting l2tpd" - start-stop-daemon --start --quiet --exec /usr/sbin/l2tpd - eend $? -} - -stop() { - ebegin "Stopping l2tpd" - start-stop-daemon --stop --quiet --pidfile /var/run/l2tpd.pid - eend $? -} diff --git a/net-dialup/xl2tpd/files/xl2tpd-init b/net-dialup/xl2tpd/files/xl2tpd-init index 1f32d2657b77..639007b577ae 100644 --- a/net-dialup/xl2tpd/files/xl2tpd-init +++ b/net-dialup/xl2tpd/files/xl2tpd-init @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/files/xl2tpd-init,v 1.1 2006/12/08 21:12:34 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/xl2tpd/files/xl2tpd-init,v 1.2 2007/03/05 10:50:54 mrness Exp $ depend() { need net @@ -27,6 +27,6 @@ start() { stop() { ebegin "Stopping xl2tpd" - start-stop-daemon --stop --quiet --pidfile /var/run/xl2tpd/xl2tpd.pid + start-stop-daemon --stop --quiet --pidfile /var/run/xl2tpd.pid eend $? } |