diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-01-29 22:38:31 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-01-29 22:38:31 +0000 |
commit | a219b373c051fdc3e932634a31b15b4fa4e983ff (patch) | |
tree | 76037d6c553e543cf4db603576e3c9ca8e80c23e /perl-install/pkgs.pm | |
parent | c6112f999b11dbf57a12cabd4bfa277fde6704e8 (diff) | |
download | drakx-backup-do-not-use-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar drakx-backup-do-not-use-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.gz drakx-backup-do-not-use-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.bz2 drakx-backup-do-not-use-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.xz drakx-backup-do-not-use-a219b373c051fdc3e932634a31b15b4fa4e983ff.zip |
move /root/* files (ddebug.log, install.log, report.bug,
auto_inst.cfg.pl, replay_install.img) to /root/drakx/,
and also save stage1.log there
Diffstat (limited to 'perl-install/pkgs.pm')
-rw-r--r-- | perl-install/pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 8c2f24865..5107c0bc8 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -862,7 +862,7 @@ sub computeGroupSize { sub init_db { my ($prefix) = @_; - my $f = "$prefix/root/install.log"; + my $f = "$prefix/root/drakx/install.log"; open(LOG, ">> $f") ? log::l("opened $f") : log::l("Failed to open $f. No install log will be kept."); *LOG or *LOG = log::F() or *LOG = *STDERR; CORE::select((CORE::select(LOG), $| = 1)[0]); |