diff options
author | Florian La Roche <laroche@redhat.com> | 2002-07-09 20:27:22 +0000 |
---|---|---|
committer | Florian La Roche <laroche@redhat.com> | 2002-07-09 20:27:22 +0000 |
commit | 9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3 (patch) | |
tree | 5c80ca5ad8a88ba88fc0390958caee527523d80a /rc.d/init.d | |
parent | 015c986a67443a9c38274e07caee1f608a466162 (diff) | |
download | initscripts-9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3.tar initscripts-9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3.tar.gz initscripts-9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3.tar.bz2 initscripts-9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3.tar.xz initscripts-9e3fb5cae87f8d800c065d536d9ba4c8cdcce6c3.zip |
- fix #68123
Diffstat (limited to 'rc.d/init.d')
-rwxr-xr-x | rc.d/init.d/halt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/init.d/halt b/rc.d/init.d/halt index 1e96ebd5..38766534 100755 --- a/rc.d/init.d/halt +++ b/rc.d/init.d/halt @@ -189,7 +189,7 @@ fi if [ "$command" = /sbin/halt -a -r /etc/ups/upsmon.conf -a -f /etc/killpower -a -f /etc/sysconfig/ups ] ; then . /etc/sysconfig/ups - [ "$SERVER" = "yes" -a "$MODEL" != "NONE" -a -n "$MODEL" -a -n "$DEVICE" ] && $MODEL -k $DEVICE + [ "$SERVER" = "yes" -a "$MODEL" != "NONE" -a -n "$MODEL" -a -n "$DEVICE" ] && $MODEL $OPTIONS -k $DEVICE fi if [ -x /sbin/halt.local ]; then |