diff options
-rwxr-xr-x | move/tree/mdk_totem | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/move/tree/mdk_totem b/move/tree/mdk_totem index 9bb795d97..43da60a3b 100755 --- a/move/tree/mdk_totem +++ b/move/tree/mdk_totem @@ -91,9 +91,9 @@ if (@busy) { if ($choice eq 'keep') { exec 'totem' or $in->exit; } else { - kill 15, map { $_->{pid} } @busy; + system('sudo', 'kill', map { $_->{pid} } @busy); sleep 2; - kill 9, map { $_->{pid} } @busy; + system('sudo', 'kill', '-9', map { $_->{pid} } @busy); } } |