Mailinglist Archive: yast-commit (723 mails)
| < Previous | Next > |
[yast-commit] r47883 - in /trunk/registration: VERSION package/yast2-registration.changes src/modules/Register.ycp
- From: jdsn@xxxxxxxxxxxxxxxx
- Date: Mon, 26 May 2008 15:48:10 -0000
- Message-id: <20080526154810.AFFCF2C295@xxxxxxxxxxxxxxxx>
Author: jdsn
Date: Mon May 26 17:48:10 2008
New Revision: 47883
URL: http://svn.opensuse.org/viewcvs/yast?rev=47883&view=rev
Log:
fix preselected checkboxes (bnc#390367)
create repositories with proper umask (bnc#392072)
2.16.4
Modified:
trunk/registration/VERSION
trunk/registration/package/yast2-registration.changes
trunk/registration/src/modules/Register.ycp
Modified: trunk/registration/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/VERSION?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/VERSION (original)
+++ trunk/registration/VERSION Mon May 26 17:48:10 2008
@@ -1 +1 @@
-2.16.3
+2.16.4
Modified: trunk/registration/package/yast2-registration.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/package/yast2-registration.changes?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/package/yast2-registration.changes (original)
+++ trunk/registration/package/yast2-registration.changes Mon May 26 17:48:10
2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Mon May 26 17:05:32 CEST 2008 - jdsn@xxxxxxx
+
+- fix preselected checkboxes (bnc#390367)
+- create repositories with proper umask (bnc#392072)
+- 2.16.4
+
+-------------------------------------------------------------------
Fri May 16 16:40:22 CEST 2008 - jsrain@xxxxxxx
- added categories Settings and System into desktop file
Modified: trunk/registration/src/modules/Register.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/src/modules/Register.ycp?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/src/modules/Register.ycp (original)
+++ trunk/registration/src/modules/Register.ycp Mon May 26 17:48:10 2008
@@ -643,9 +643,17 @@
// then read from sysconfig - but not during installation
if (Mode::normal())
- {
- submit_optional = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_OPTIONAL ) == "true" ? true:false;
- submit_hwdata = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_HWDATA ) == "true" ? true:false;
+ { // (bnc#390367)
+ string sysc_submit_optional = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_OPTIONAL );
+ string sysc_submit_hwdata = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_HWDATA );
+ if (sysc_submit_optional != "")
+ {
+ submit_optional = sysc_submit_optional == "true" ? true:false;
+ }
+ if (sysc_submit_hwdata != "")
+ {
+ submit_hwdata = sysc_submit_hwdata == "true" ? true:false;
+ }
}
}
@@ -744,7 +752,8 @@
if (parameter == `p) params = params + " -p ";
else params = params + sformat(" --dumpfile=%1 ", services_file);
- string pre_sr = " umask 0077; ";
+ // (bnc#392072)
+ string pre_sr = " umask 0022; ";
if (Register::use_proxy)
{ // (#165891)
pre_sr = pre_sr + " http_proxy='" + Register::http_proxy + "' ";
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
Date: Mon May 26 17:48:10 2008
New Revision: 47883
URL: http://svn.opensuse.org/viewcvs/yast?rev=47883&view=rev
Log:
fix preselected checkboxes (bnc#390367)
create repositories with proper umask (bnc#392072)
2.16.4
Modified:
trunk/registration/VERSION
trunk/registration/package/yast2-registration.changes
trunk/registration/src/modules/Register.ycp
Modified: trunk/registration/VERSION
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/VERSION?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/VERSION (original)
+++ trunk/registration/VERSION Mon May 26 17:48:10 2008
@@ -1 +1 @@
-2.16.3
+2.16.4
Modified: trunk/registration/package/yast2-registration.changes
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/package/yast2-registration.changes?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/package/yast2-registration.changes (original)
+++ trunk/registration/package/yast2-registration.changes Mon May 26 17:48:10
2008
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Mon May 26 17:05:32 CEST 2008 - jdsn@xxxxxxx
+
+- fix preselected checkboxes (bnc#390367)
+- create repositories with proper umask (bnc#392072)
+- 2.16.4
+
+-------------------------------------------------------------------
Fri May 16 16:40:22 CEST 2008 - jsrain@xxxxxxx
- added categories Settings and System into desktop file
Modified: trunk/registration/src/modules/Register.ycp
URL:
http://svn.opensuse.org/viewcvs/yast/trunk/registration/src/modules/Register.ycp?rev=47883&r1=47882&r2=47883&view=diff
==============================================================================
--- trunk/registration/src/modules/Register.ycp (original)
+++ trunk/registration/src/modules/Register.ycp Mon May 26 17:48:10 2008
@@ -643,9 +643,17 @@
// then read from sysconfig - but not during installation
if (Mode::normal())
- {
- submit_optional = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_OPTIONAL ) == "true" ? true:false;
- submit_hwdata = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_HWDATA ) == "true" ? true:false;
+ { // (bnc#390367)
+ string sysc_submit_optional = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_OPTIONAL );
+ string sysc_submit_hwdata = (string) SCR::Read(
.sysconfig.suse_register.SUBMIT_HWDATA );
+ if (sysc_submit_optional != "")
+ {
+ submit_optional = sysc_submit_optional == "true" ? true:false;
+ }
+ if (sysc_submit_hwdata != "")
+ {
+ submit_hwdata = sysc_submit_hwdata == "true" ? true:false;
+ }
}
}
@@ -744,7 +752,8 @@
if (parameter == `p) params = params + " -p ";
else params = params + sformat(" --dumpfile=%1 ", services_file);
- string pre_sr = " umask 0077; ";
+ // (bnc#392072)
+ string pre_sr = " umask 0022; ";
if (Register::use_proxy)
{ // (#165891)
pre_sr = pre_sr + " http_proxy='" + Register::http_proxy + "' ";
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |