summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-04-09 10:03:22 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-04-09 10:03:22 +0000
commit5d31c1b8727635cae94e9502888b8653e66e9ef9 (patch)
tree322ce292544d17e680f487915b2505501d2c9a14 /perl-install/install2.pm
parent012e3e72df8606c8a323852a518c82b29dc0a21e (diff)
downloaddrakx-backup-do-not-use-5d31c1b8727635cae94e9502888b8653e66e9ef9.tar
drakx-backup-do-not-use-5d31c1b8727635cae94e9502888b8653e66e9ef9.tar.gz
drakx-backup-do-not-use-5d31c1b8727635cae94e9502888b8653e66e9ef9.tar.bz2
drakx-backup-do-not-use-5d31c1b8727635cae94e9502888b8653e66e9ef9.tar.xz
drakx-backup-do-not-use-5d31c1b8727635cae94e9502888b8653e66e9ef9.zip
(main): log the umask
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r--perl-install/install2.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm
index 437d90b2c..762e1c814 100644
--- a/perl-install/install2.pm
+++ b/perl-install/install2.pm
@@ -546,6 +546,7 @@ sub main {
MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep()) {
$o->{steps}{$o->{step}}{entered}++;
$o->enteringStep($o->{step});
+ log::l("umask is ", umask());
eval {
&{$install2::{$o->{step}}}($clicked, $o->{steps}{$o->{step}}{entered});
};