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/log.pm | |
parent | c6112f999b11dbf57a12cabd4bfa277fde6704e8 (diff) | |
download | drakx-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar drakx-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.gz drakx-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.bz2 drakx-a219b373c051fdc3e932634a31b15b4fa4e983ff.tar.xz drakx-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/log.pm')
-rw-r--r-- | perl-install/log.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/log.pm b/perl-install/log.pm index 59f3d4bbf..649ed30a0 100644 --- a/perl-install/log.pm +++ b/perl-install/log.pm @@ -36,7 +36,7 @@ sub openLog(;$) { if ($_[0]) { #- useLocal open LOG, "> $_[0]";# or die "no log possible :("; } else { - open LOG, "> /dev/tty3" or open LOG, ">> /tmp/install.log";# or die "no log possible :("; + open LOG, "> /dev/tty3";# or die "no log possible :("; } open LOG2, ">> /tmp/ddebug.log";# or die "no log possible :("; select((select(LOG), $| = 1)[0]); |