diff options
Diffstat (limited to 'net-misc/vtun')
-rw-r--r-- | net-misc/vtun/ChangeLog | 3 | ||||
-rw-r--r-- | net-misc/vtun/files/vtun.rc | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/net-misc/vtun/ChangeLog b/net-misc/vtun/ChangeLog index 29af24b09449..5f3697463285 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 + 20 Oct 2003; Chuck Short <zul@gentoo.org> files/vtun.rc: + More init tweaks. + 19 Oct 2003; Chuck Short <zul@gentoo.org> files/vtun.rc: Fixed initscript bug. closes #31517. diff --git a/net-misc/vtun/files/vtun.rc b/net-misc/vtun/files/vtun.rc index c7539d99df65..2de500050f16 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 -s -P $server -- $args + /usr/sbin/vtund -s -P $server $args eend $? else ebegin "Starting vtund client $host to $server" - /usr/sbin/vtund $host $server -- $args + /usr/sbin/vtund $args -- $host $server eend $? fi) done |