Mailinglist Archive: opensuse-commit (1092 mails)

< Previous Next >
commit yast2-product-creator
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Fri, 08 Feb 2008 17:28:37 +0100
  • Message-id: <20080208162838.40FCD6781B8@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package yast2-product-creator
checked in at Fri Feb 8 17:28:37 CET 2008.

--------
--- yast2-product-creator/yast2-product-creator.changes 2008-01-25
16:24:58.000000000 +0100
+++
/mounts/work_src_done/NOARCH/yast2-product-creator/yast2-product-creator.changes
2008-02-06 13:38:09.324865000 +0100
@@ -1,0 +2,6 @@
+Wed Feb 6 13:30:55 CET 2008 - jsuchome@xxxxxxx
+
+- save user password when importing configuration (bnc#357922)
+- 2.16.8
+
+-------------------------------------------------------------------

Old:
----
yast2-product-creator-2.16.7.tar.bz2

New:
----
yast2-product-creator-2.16.8.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-product-creator.spec ++++++
--- /var/tmp/diff_new_pack.t19111/_old 2008-02-08 17:24:56.000000000 +0100
+++ /var/tmp/diff_new_pack.t19111/_new 2008-02-08 17:24:56.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-product-creator (Version 2.16.7)
+# spec file for package yast2-product-creator (Version 2.16.8)
#
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild

Name: yast2-product-creator
-Version: 2.16.7
+Version: 2.16.8
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-product-creator-2.16.7.tar.bz2
+Source0: yast2-product-creator-2.16.8.tar.bz2
Prefix: /usr
BuildRequires: autoyast2-installation perl-XML-Writer update-desktop-files
yast2-devtools yast2-packager yast2-security yast2-testsuite
PreReq: %fillup_prereq
@@ -36,7 +36,7 @@


%prep
-%setup -n yast2-product-creator-2.16.7
+%setup -n yast2-product-creator-2.16.8

%build
%{prefix}/bin/y2tool y2autoconf
@@ -83,6 +83,9 @@
/usr/lib/YaST2/servers_non_y2/ag_*
/var/adm/fillup-templates/sysconfig.product-creator
%changelog
+* Wed Feb 06 2008 jsuchome@xxxxxxx
+- save user password when importing configuration (bnc#357922)
+- 2.16.8
* Fri Jan 25 2008 jsuchome@xxxxxxx
- added support for keytable and timezone keys; save preferences
section with correct ordering (#355568)

++++++ yast2-product-creator-2.16.7.tar.bz2 ->
yast2-product-creator-2.16.8.tar.bz2 ++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-product-creator-2.16.7/src/kiwi_dialogs.ycp
new/yast2-product-creator-2.16.8/src/kiwi_dialogs.ycp
--- old/yast2-product-creator-2.16.7/src/kiwi_dialogs.ycp 2008-01-17
10:42:03.000000000 +0100
+++ new/yast2-product-creator-2.16.8/src/kiwi_dialogs.ycp 2008-02-06
11:12:26.000000000 +0100
@@ -416,6 +416,7 @@
group = username == "root" ? "root" : "users";
KiwiConfig["users", username] = $[
"pwd" : pwd,
+ "encrypted" : false,
"home" : UI::QueryWidget (`id(`home), `Value),
"group" : group,
"username" : username,
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-product-creator-2.16.7/src/Kiwi.ycp
new/yast2-product-creator-2.16.8/src/Kiwi.ycp
--- old/yast2-product-creator-2.16.7/src/Kiwi.ycp 2008-01-25
15:43:01.000000000 +0100
+++ new/yast2-product-creator-2.16.8/src/Kiwi.ycp 2008-02-06
11:12:26.000000000 +0100
@@ -4,7 +4,7 @@
* Summary: Data for kiwi configuration, input and output functions.
* Authors: Jiri Suchomel <jsuchome@xxxxxxx>
*
- * $Id: Kiwi.ycp 43691 2008-01-17 09:42:02Z jsuchome $
+ * $Id: Kiwi.ycp 43917 2008-01-25 15:25:24Z jsuchome $
*/
{
module "Kiwi";
@@ -325,9 +325,12 @@
foreach (string user, map usermap, (map<string,map>) config["users"]:$[], {
if (!haskey (ret, "users"))
ret["users"] = $[];
+ string pwd = usermap["pwd"]:"";
+ boolean crypted = (pwd != "");
ret["users",user] = $[
"home" : usermap["home"]:sformat ("/home/%1", user),
- "pwd" : user,
+ "pwd" : (pwd == "") ? user : pwd,
+ "encrypted" : crypted,
"group" : usermap["group"]:"",
"username" : user,
];
@@ -522,7 +525,7 @@
$[
"__key" : "user",
"name" : usermap["username"]:"",
- "pwd" : crypt_password (usermap["pwd"]:""),
+ "pwd" : (usermap["encrypted"]:false) ?
usermap["pwd"]:"" : crypt_password (usermap["pwd"]:""),
"home" : usermap["home"]:"",
]
))
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-product-creator-2.16.7/VERSION
new/yast2-product-creator-2.16.8/VERSION
--- old/yast2-product-creator-2.16.7/VERSION 2008-01-25 15:41:21.000000000
+0100
+++ new/yast2-product-creator-2.16.8/VERSION 2008-02-06 13:30:50.000000000
+0100
@@ -1 +1 @@
-2.16.7
+2.16.8


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx

< Previous Next >
This Thread
  • No further messages