Mailinglist Archive: yast-commit (595 mails)
| < Previous | Next > |
[yast-commit] r54209 - in /trunk/users: VERSION package/yast2-users.changes src/UsersSimple.pm
- From: jsuchome@xxxxxxxxxxxxxxxx
- Date: Tue, 16 Dec 2008 18:44:55 -0000
- Message-id: <20081216184455.BFFC7B0EA6@xxxxxxxxxxxxxxxx>
Author: jsuchome
Date: Tue Dec 16 19:44:55 2008
New Revision: 54209
URL: http://svn.opensuse.org/viewcvs/yast?rev=54209&view=rev
Log:
- do not try to detect network authentication methods during
firstboot (#bnc458468)
- 2.18.0
Modified:
trunk/users/VERSION
trunk/users/package/yast2-users.changes
trunk/users/src/UsersSimple.pm
Modified: trunk/users/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/VERSION?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/VERSION (original)
+++ trunk/users/VERSION Tue Dec 16 19:44:55 2008
@@ -1 +1 @@
-2.17.27
+2.18.0
Modified: trunk/users/package/yast2-users.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/package/yast2-users.changes?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/package/yast2-users.changes (original)
+++ trunk/users/package/yast2-users.changes Tue Dec 16 19:44:55 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Dec 16 19:44:10 CET 2008 - jsuchome@xxxxxxx
+
+- do not try to detect network authentication methods during
+ firstboot (#bnc458468)
+- 2.18.0
+
+-------------------------------------------------------------------
Tue Dec 2 14:32:27 CET 2008 - ug@xxxxxxx
- rnc file fixed
Modified: trunk/users/src/UsersSimple.pm
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/src/UsersSimple.pm?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/src/UsersSimple.pm (original)
+++ trunk/users/src/UsersSimple.pm Tue Dec 16 19:44:55 2008
@@ -1225,6 +1225,13 @@
return $network_methods_checked if $network_methods_checked;
+ # no check during firstboot (bnc#458468)
+ if (Stage->firstboot ()) {
+ $network_methods_checked = 1;
+ y2milestone ("firstboot stage: no check for network methods");
+ return 1;
+ }
+
if (!NetworkService->isNetworkRunning()) {
y2milestone ("network is not running, skipping network methods test");
return 0;
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Tue Dec 16 19:44:55 2008
New Revision: 54209
URL: http://svn.opensuse.org/viewcvs/yast?rev=54209&view=rev
Log:
- do not try to detect network authentication methods during
firstboot (#bnc458468)
- 2.18.0
Modified:
trunk/users/VERSION
trunk/users/package/yast2-users.changes
trunk/users/src/UsersSimple.pm
Modified: trunk/users/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/VERSION?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/VERSION (original)
+++ trunk/users/VERSION Tue Dec 16 19:44:55 2008
@@ -1 +1 @@
-2.17.27
+2.18.0
Modified: trunk/users/package/yast2-users.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/package/yast2-users.changes?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/package/yast2-users.changes (original)
+++ trunk/users/package/yast2-users.changes Tue Dec 16 19:44:55 2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Tue Dec 16 19:44:10 CET 2008 - jsuchome@xxxxxxx
+
+- do not try to detect network authentication methods during
+ firstboot (#bnc458468)
+- 2.18.0
+
+-------------------------------------------------------------------
Tue Dec 2 14:32:27 CET 2008 - ug@xxxxxxx
- rnc file fixed
Modified: trunk/users/src/UsersSimple.pm
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/users/src/UsersSimple.pm?rev=54209&r1=54208&r2=54209&view=diff
==============================================================================
--- trunk/users/src/UsersSimple.pm (original)
+++ trunk/users/src/UsersSimple.pm Tue Dec 16 19:44:55 2008
@@ -1225,6 +1225,13 @@
return $network_methods_checked if $network_methods_checked;
+ # no check during firstboot (bnc#458468)
+ if (Stage->firstboot ()) {
+ $network_methods_checked = 1;
+ y2milestone ("firstboot stage: no check for network methods");
+ return 1;
+ }
+
if (!NetworkService->isNetworkRunning()) {
y2milestone ("network is not running, skipping network methods test");
return 0;
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |