diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-16 16:06:59 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-16 16:06:59 +0000 |
commit | d90f07bd189c20957496848aa2658890e1f2ad31 (patch) | |
tree | ce0b8bc083378f39ebe3963f063a50122b49900c /perl-install | |
parent | 9a2e11733d35b1c175ba0bfe9245fb12d77bb0d6 (diff) | |
download | drakx-backup-do-not-use-d90f07bd189c20957496848aa2658890e1f2ad31.tar drakx-backup-do-not-use-d90f07bd189c20957496848aa2658890e1f2ad31.tar.gz drakx-backup-do-not-use-d90f07bd189c20957496848aa2658890e1f2ad31.tar.bz2 drakx-backup-do-not-use-d90f07bd189c20957496848aa2658890e1f2ad31.tar.xz drakx-backup-do-not-use-d90f07bd189c20957496848aa2658890e1f2ad31.zip |
network::shorewall::read without silent is nasty, since it doesn't only read,
it prompts the user. So each time the summary updates the data, it prompts
(when you have more than one card and no firewall configured)
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index e94058163..12970008a 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1053,7 +1053,7 @@ sub summary { label => N("Firewall"), val => sub { require network::shorewall; - my $shorewall = network::shorewall::read($o, 'not_silent'); + my $shorewall = network::shorewall::read($o, 'silent'); $shorewall && !$shorewall->{disabled} ? N("activated") : N("disabled"); }, clicked => sub { |