summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChuck Short <zul@gentoo.org>2003-10-17 02:13:44 +0000
committerChuck Short <zul@gentoo.org>2003-10-17 02:13:44 +0000
commit38550285ec68dd2401d94111615cd51971126661 (patch)
tree1452af17e3d3f97e169046a2c1865c39107f548b /net-misc/vtun/files
parent*** empty log message *** (diff)
downloadgentoo-2-38550285ec68dd2401d94111615cd51971126661.tar.gz
gentoo-2-38550285ec68dd2401d94111615cd51971126661.tar.bz2
gentoo-2-38550285ec68dd2401d94111615cd51971126661.zip
Fixed init script. closes #21351
Diffstat (limited to 'net-misc/vtun/files')
-rw-r--r--net-misc/vtun/files/vtun.rc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net-misc/vtun/files/vtun.rc b/net-misc/vtun/files/vtun.rc
index a2ea97431caf..1f30ec5e2a2d 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"
- start-stop-daemon --start --quiet --exec /usr/sbin/vtund -- $args -s -P $server
+ /usr/sbin/vtund -- $args -s -P $server
eend $?
else
ebegin "Starting vtund client $host to $server"
- start-stop-daemon --start --quiet --exec /usr/sbin/vtund -- $args $host $server
+ /usr/sbin/vtund -- $args $host $server
eend $?
fi)
done