diff options
author | Chuck Short <zul@gentoo.org> | 2003-10-20 11:21:44 +0000 |
---|---|---|
committer | Chuck Short <zul@gentoo.org> | 2003-10-20 11:21:44 +0000 |
commit | b83bc4a80674a060be7ad5ad94b99f244129eda2 (patch) | |
tree | 2d69cb54d6d160522ddf7de3c9fd0a2b35ed6d22 /net-misc/vtun | |
parent | Added sys-libs/ncurses as a dependency; Allow the compile process to use CFLAGS. (diff) | |
download | historical-b83bc4a80674a060be7ad5ad94b99f244129eda2.tar.gz historical-b83bc4a80674a060be7ad5ad94b99f244129eda2.tar.bz2 historical-b83bc4a80674a060be7ad5ad94b99f244129eda2.zip |
More init tweaks.
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 |