diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-17 17:22:43 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-17 17:22:43 +0000 |
commit | 29892f9b126489f85b6f25c15acbae71d0fbf842 (patch) | |
tree | b18d28e54c60898b645a8240aa6701eb787b4e18 /sys-libs | |
parent | Changed perms for /var/tmp to 1777 (diff) | |
download | gentoo-2-29892f9b126489f85b6f25c15acbae71d0fbf842.tar.gz gentoo-2-29892f9b126489f85b6f25c15acbae71d0fbf842.tar.bz2 gentoo-2-29892f9b126489f85b6f25c15acbae71d0fbf842.zip |
Added -- to the start-stop-daemon line
Diffstat (limited to 'sys-libs')
-rwxr-xr-x | sys-libs/gpm/files/gpm-1.19.3-r3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-libs/gpm/files/gpm-1.19.3-r3 b/sys-libs/gpm/files/gpm-1.19.3-r3 index 518af1c6f123..20bcb71ef040 100755 --- a/sys-libs/gpm/files/gpm-1.19.3-r3 +++ b/sys-libs/gpm/files/gpm-1.19.3-r3 @@ -12,13 +12,13 @@ EXE=/usr/sbin/gpm start() { ebegin "Starting $SERVICE" - start-stop-daemon --start --quiet --exec "$EXE -t $MOUSE" + start-stop-daemon --start --quiet --exec "$EXE -- -t $MOUSE" eend $? "Started $SERVICE." "Error starting $SERVICE." } stop() { ebegin "Stopping $SERVICE" - start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $EXE -t $MOUSE + start-stop-daemon --stop --quiet --pidfile $PIDFILE --exec $EXE eend $? "Stopped $SERVICE." "Error stopping $SERVICE." } |