summaryrefslogtreecommitdiffstats
path: root/perl-install/pkgs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-05-30 07:41:37 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-05-30 07:41:37 +0000
commit8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1 (patch)
tree073c62d93ac2a1a25f3589e041896e4cc8cdc5ee /perl-install/pkgs.pm
parent6d73bf0cdfe5a59f4d15e2da7a6f0770d025052b (diff)
downloaddrakx-backup-do-not-use-8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1.tar
drakx-backup-do-not-use-8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1.tar.gz
drakx-backup-do-not-use-8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1.tar.bz2
drakx-backup-do-not-use-8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1.tar.xz
drakx-backup-do-not-use-8e0be3d8c1d3f6df3c75b98d6fdbde773ddfb2e1.zip
don't kill runaway processes in drakx-in-chroot since we don't detect wether those are runaway processes or normal processes
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r--perl-install/pkgs.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index c07fa6238..c3df7fa52 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -1209,7 +1209,7 @@ sub install {
difference2([ $$, hashtree2list(getppid(), \%ppids) ],
[ hashtree2list($$, \%ppids) ]) ]);
- if (@killpid && $::isInstall) {
+ if (@killpid && $::isInstall && !$::local_install) {
foreach (@killpid) {
my ($prog, @para) = split("\0", cat_("/proc/$_/cmdline"));
log::l("ERROR: DrakX should not have to clean the packages shit. Killing $_: " . join(' ', $prog, @para) . ".") if $prog ne '/usr/lib/gconfd-2';