diff options
author | Fritz Elfert <felfert@to.com> | 2002-07-20 13:07:32 +0000 |
---|---|---|
committer | Fritz Elfert <felfert@to.com> | 2002-07-20 13:07:32 +0000 |
commit | 867138b8b468f519cca8a07f83c890f7ef6a0c56 (patch) | |
tree | 93bea122eb1876ae06a0569c8a3a549fb8921038 /etc | |
parent | b009ffec89ae6caa0a8fdd503db4fb2e43b1ec61 (diff) | |
download | plptools-867138b8b468f519cca8a07f83c890f7ef6a0c56.tar.gz plptools-867138b8b468f519cca8a07f83c890f7ef6a0c56.tar.bz2 plptools-867138b8b468f519cca8a07f83c890f7ef6a0c56.zip |
- Small fix
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/psion.SuSE.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/psion.SuSE.in b/etc/psion.SuSE.in index 2d37e66..6d24cd3 100755 --- a/etc/psion.SuSE.in +++ b/etc/psion.SuSE.in @@ -19,7 +19,7 @@ test -f @prefix@/sbin/plpprintd || exit 0 # The echo return value for success (defined in /etc/rc.config). showresult() { - test RETVAL -eq 0 && echo -e $rc_done || echo -e $rc_failed + test $RETVAL -eq 0 && echo -e $rc_done || echo -e $rc_failed } showstatus() { @@ -58,7 +58,7 @@ stop() { echo "Stopping Psion support ..." if test "$START_PLPNFSD" = "yes" ; then echo -n " plpnfsd: " - /bin/killproc -HUP plpnfsd + /sbin/killproc -HUP plpnfsd WAIT=5 while test $WAIT -gt 0 ; do test -z "`pidof plpnfsd`" && break; |