diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-24 16:11:47 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2000-09-24 16:11:47 +0000 |
commit | f2f438198e79df339347bcb0bb69f62dc36274b9 (patch) | |
tree | ad3b36cc5cb749a1489b802144671380d8134f83 /perl-install | |
parent | c3ea2f2b56e19aa5006d21a4feea63622c04c3a0 (diff) | |
download | drakx-f2f438198e79df339347bcb0bb69f62dc36274b9.tar drakx-f2f438198e79df339347bcb0bb69f62dc36274b9.tar.gz drakx-f2f438198e79df339347bcb0bb69f62dc36274b9.tar.bz2 drakx-f2f438198e79df339347bcb0bb69f62dc36274b9.tar.xz drakx-f2f438198e79df339347bcb0bb69f62dc36274b9.zip |
add log on fatal_quit
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/ChangeLog | 4 | ||||
-rwxr-xr-x | perl-install/standalone/drakgw | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/ChangeLog b/perl-install/ChangeLog index 145982fa9..69a25fd48 100644 --- a/perl-install/ChangeLog +++ b/perl-install/ChangeLog @@ -1,3 +1,7 @@ +2000-09-24 Guillaume Cottenceau <gc@mandrakesoft.com> + + * standalone/drakgw (fatal_quit($)): add log of reason of fatal_quit + 2000-09-24 DrakX <install@linux-mandrake.com> * snapshot uploaded diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 99dc366d6..e3e42973c 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -82,6 +82,7 @@ sub install_rpm($) sub fatal_quit($) { + log::l("[drakgw] FATAL: $_[0]\n"); (defined $wait_configuring) and (undef $wait_configuring); $in->ask_warn('', $_[0]); $in->exit(-1); |