summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-10-19 19:42:03 +0000
committerChuck Short <zul@gentoo.org>2003-10-19 19:42:03 +0000
commit588642292c8625dd4b2f75de03a77dff4a0f4497 (patch)
tree58e483ac171ca7523efb571247d9405485ded69a /net-misc/vtun
parentrepoman: Trim trailing whitespace (diff)
downloadgentoo-2-588642292c8625dd4b2f75de03a77dff4a0f4497.tar.gz
gentoo-2-588642292c8625dd4b2f75de03a77dff4a0f4497.tar.bz2
gentoo-2-588642292c8625dd4b2f75de03a77dff4a0f4497.zip
Fix initscript bug, #31517.
Diffstat (limited to 'net-misc/vtun')
-rw-r--r--net-misc/vtun/ChangeLog3
-rw-r--r--net-misc/vtun/files/vtun.rc4
2 files changed, 5 insertions, 2 deletions
diff --git a/net-misc/vtun/ChangeLog b/net-misc/vtun/ChangeLog
index f141d46a1123..29af24b09449 100644
--- a/net-misc/vtun/ChangeLog
+++ b/net-misc/vtun/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
# /space/gentoo/cvsroot/gentoo-x86/skel.ChangeLog,v 1.2 2002/02/05 00:57:47 gbevin Exp
+ 19 Oct 2003; Chuck Short <zul@gentoo.org> files/vtun.rc:
+ Fixed initscript bug. closes #31517.
+
*vtun-2.6 (17 Oct 2003)
17 Oct 2003; Chuck Short <zul@gentoo.org> vtun-2.6.ebuild,
diff --git a/net-misc/vtun/files/vtun.rc b/net-misc/vtun/files/vtun.rc
index 1f30ec5e2a2d..c7539d99df65 100644
--- a/net-misc/vtun/files/vtun.rc
+++ b/net-misc/vtun/files/vtun.rc
@@ -15,11 +15,11 @@ start() {
read host server args
if [ "$host" = "--server--" ]; then
ebegin "Starting vtund server"
- /usr/sbin/vtund -- $args -s -P $server
+ /usr/sbin/vtund -s -P $server -- $args
eend $?
else
ebegin "Starting vtund client $host to $server"
- /usr/sbin/vtund -- $args $host $server
+ /usr/sbin/vtund $host $server -- $args
eend $?
fi)
done