diff options
-rw-r--r-- | lib/Iurt/Process.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Iurt/Process.pm b/lib/Iurt/Process.pm index f306fe3..0099829 100644 --- a/lib/Iurt/Process.pm +++ b/lib/Iurt/Process.pm @@ -308,11 +308,11 @@ sub perform_command { sub clean_process { my ($match, $verbose) = @_; - return clean($match, "pgrep -u root -f", "$sudo pkill -9 -u root -f", $verbose); + return clean($match, "pgrep -u root -f", "$sudo pkill -9 -u root -f"); } sub clean { - my ($var, $cmd, $kill_cmd, $_verbose) = @_; + my ($var, $cmd, $kill_cmd) = @_; plog('DEBUG', "clean command $var"); $var or die "FATAL: no command given\n."; |