diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-11-07 12:52:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-11-07 12:52:47 +0000 |
commit | 419a368acbb540db6ae8cff8efb04dca76824409 (patch) | |
tree | 3bec36c0ed688035b164081e83dbe58bc6d06369 /move | |
parent | 9bc1d750a05cc4efec0f1b9f4384bfd12d73daa3 (diff) | |
download | drakx-419a368acbb540db6ae8cff8efb04dca76824409.tar drakx-419a368acbb540db6ae8cff8efb04dca76824409.tar.gz drakx-419a368acbb540db6ae8cff8efb04dca76824409.tar.bz2 drakx-419a368acbb540db6ae8cff8efb04dca76824409.tar.xz drakx-419a368acbb540db6ae8cff8efb04dca76824409.zip |
handle image_raw (ie non-mounted live_tree)
Diffstat (limited to 'move')
-rwxr-xr-x | move/tools/busy-files | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/move/tools/busy-files b/move/tools/busy-files index 6275578ff..5c770c561 100755 --- a/move/tools/busy-files +++ b/move/tools/busy-files @@ -13,7 +13,7 @@ my @l = map { push @l, grep { $_ } map { (split)[5] } map { cat_("/proc/$_/maps") } @pids; if ($ARGV[0] eq '--totem') { - @l = grep { m!/image(_boot)?/! } @l; + @l = grep { m!/image(_boot|_raw)?/! } @l; $ARGV[0] = '--server'; } foreach (uniq @l) { |