diff options
author | Fabio Sangiovanni <sjh+sbo@sanjioh.org> | 2015-03-27 15:31:00 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-03-27 15:31:00 +0700 |
commit | 3c71171762b643cb4e88158a7de7222db984321b (patch) | |
tree | afc47de3bb6608afc6f027cfcf1cdc6a5ebddf9c /system/i8kutils/rc.i8kmon | |
parent | 98b0b1410b8e9d5da1b14eb852fa8258545274c7 (diff) |
system/i8kutils: Updated for version 1.42.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/i8kutils/rc.i8kmon')
-rw-r--r-- | system/i8kutils/rc.i8kmon | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/i8kutils/rc.i8kmon b/system/i8kutils/rc.i8kmon index 1d88d42ccbb5..18640a137156 100644 --- a/system/i8kutils/rc.i8kmon +++ b/system/i8kutils/rc.i8kmon @@ -14,12 +14,12 @@ i8kmon_start() { # Stop i8kmon i8kmon_stop() { echo "Stopping i8kmon daemon" - pkill -f "tclsh /usr/bin/i8kmon -- $I8KMON_PARAMS" + pkill -f "tclsh /usr/bin/i8kmon $I8KMON_PARAMS" } # Check status i8kmon_status() { - pgrep -f "tclsh /usr/bin/i8kmon -- $I8KMON_PARAMS" > /dev/null + pgrep -f "tclsh /usr/bin/i8kmon $I8KMON_PARAMS" > /dev/null local I8KMON_STATUS=$? if [ $I8KMON_STATUS -ne 0 ]; then return 1 |