diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-10-10 12:33:31 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-10-10 12:33:31 +0200 |
commit | c0ead9f815d7692b2b755327fe0898a8aaecbde1 (patch) | |
tree | 84c9687a656c5d4fbfc83f97f0a08f9e6dcbf759 /perl-install/install/steps_interactive.pm | |
parent | 215d65f96f75dca59430c4808f098605344e509f (diff) | |
download | drakx-c0ead9f815d7692b2b755327fe0898a8aaecbde1.tar drakx-c0ead9f815d7692b2b755327fe0898a8aaecbde1.tar.gz drakx-c0ead9f815d7692b2b755327fe0898a8aaecbde1.tar.bz2 drakx-c0ead9f815d7692b2b755327fe0898a8aaecbde1.tar.xz drakx-c0ead9f815d7692b2b755327fe0898a8aaecbde1.zip |
(installUpdates) log when user reject applying updates
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r-- | perl-install/install/steps_interactive.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 1bfea5cd0..ee5eda054 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -774,7 +774,10 @@ connection. Do you want to install the updates?")), interactive_help_id => 'installUpdates', - }, 1) or return; + }, 1) or do { + log::l("installUpdates: skipping since user say no to updates"); + return; + }; #- bring all interface up for installing updates packages. install::interactive::upNetwork($o); |