summaryrefslogtreecommitdiffstats
path: root/move/tree
diff options
context:
space:
mode:
Diffstat (limited to 'move/tree')
-rwxr-xr-xmove/tree/mdk_totem4
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);
}
}