diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-08-19 09:26:39 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-08-19 09:26:39 +0000 |
commit | f341e18cb74930f323820c82b1276c626287119c (patch) | |
tree | 8b93de35a7715846ee8004a98172b9002d96eb2f | |
parent | 22dd2219ea776cc40db01e4573a0fca3f66946ce (diff) | |
download | drakx-f341e18cb74930f323820c82b1276c626287119c.tar drakx-f341e18cb74930f323820c82b1276c626287119c.tar.gz drakx-f341e18cb74930f323820c82b1276c626287119c.tar.bz2 drakx-f341e18cb74930f323820c82b1276c626287119c.tar.xz drakx-f341e18cb74930f323820c82b1276c626287119c.zip |
authentication: enable network-auth meta-service if auth is not local
-rw-r--r-- | perl-install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/authentication.pm | 3 | ||||
-rw-r--r-- | perl-install/install/NEWS | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 1ddd84270..50e337bae 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- authentication: enable network-auth meta-service if auth is not local + Version 11.13 - 18 August 2008 - do_pkgs: do not reload urpmi media at every check for package availability diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index 2ca92f4aa..ab62af40f 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -292,6 +292,9 @@ sub set { install_needed_packages($in->do_pkgs, to_kind($authentication)) or return; set_raw($net, $authentication, $o_when_network_is_up); + + require services; + services::set_status('network-auth', to_kind($authentication) ne 'local', 'dont_apply'); } sub set_raw { diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 96bd1c28e..64b5db04c 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,6 @@ - fix crash with advanced widgets - fix bogus popup of 'desktop choice' dialog +- authentication: enable network-auth meta-service if auth is not local Version 11.13 - 18 August 2008 |