Mailinglist Archive: opensuse-commit (857 mails)
| < Previous | Next > |
commit yast2-ldap-client
- From: root@xxxxxxxxxxxxxxx (h_root)
- Date: Mon, 12 Nov 2007 21:30:06 +0100
- Message-id: <20071112203006.DE9DE678335@xxxxxxxxxxxxxxx>
Hello community,
here is the log from the commit of package yast2-ldap-client
checked in at Mon Nov 12 21:30:06 CET 2007.
--------
--- yast2-ldap-client/yast2-ldap-client.changes 2007-10-24 16:30:56.000000000
+0200
+++ /mounts/work_src_done/NOARCH/yast2-ldap-client/yast2-ldap-client.changes
2007-11-12 15:29:10.842626000 +0100
@@ -1,0 +2,7 @@
+Mon Nov 12 14:43:40 CET 2007 - jsuchome@xxxxxxx
+
+- do not override user modifications when creating default objects
+ (#339232)
+- 2.16.2
+
+-------------------------------------------------------------------
Old:
----
yast2-ldap-client-2.16.1.tar.bz2
New:
----
yast2-ldap-client-2.16.2.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ldap-client.spec ++++++
--- /var/tmp/diff_new_pack.i11315/_old 2007-11-12 21:29:17.000000000 +0100
+++ /var/tmp/diff_new_pack.i11315/_new 2007-11-12 21:29:17.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package yast2-ldap-client (Version 2.16.1)
+# spec file for package yast2-ldap-client (Version 2.16.2)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@@ -11,12 +11,12 @@
# norootforbuild
Name: yast2-ldap-client
-Version: 2.16.1
+Version: 2.16.2
Release: 1
License: GPL v2 or later
Group: System/YaST
BuildRoot: %{_tmppath}/%{name}-%{version}-build
-Source0: yast2-ldap-client-2.16.1.tar.bz2
+Source0: yast2-ldap-client-2.16.2.tar.bz2
Prefix: /usr
BuildRequires: doxygen perl-XML-Writer update-desktop-files yast2
yast2-devtools yast2-network yast2-pam yast2-testsuite
PreReq: %fillup_prereq
@@ -46,7 +46,7 @@
Jiri Suchomel <jsuchome@xxxxxxx>
%prep
-%setup -n yast2-ldap-client-2.16.1
+%setup -n yast2-ldap-client-2.16.2
%build
%{prefix}/bin/y2tool y2autoconf
@@ -86,6 +86,10 @@
%doc %{prefix}/share/doc/packages/yast2-ldap-client
/var/adm/fillup-templates/sysconfig.ldap
%changelog
+* Mon Nov 12 2007 - jsuchome@xxxxxxx
+- do not override user modifications when creating default objects
+ (#339232)
+- 2.16.2
* Wed Oct 24 2007 - jsuchome@xxxxxxx
- if crypted connection is switched off, adapt the checkbox value
(#330054)
++++++ yast2-ldap-client-2.16.1.tar.bz2 -> yast2-ldap-client-2.16.2.tar.bz2
++++++
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ldap-client-2.16.1/src/Ldap.ycp
new/yast2-ldap-client-2.16.2/src/Ldap.ycp
--- old/yast2-ldap-client-2.16.1/src/Ldap.ycp 2007-10-24 16:15:37.000000000
+0200
+++ new/yast2-ldap-client-2.16.2/src/Ldap.ycp 2007-11-12 14:39:54.000000000
+0100
@@ -5,7 +5,7 @@
* Authors: Thorsten Kukuk <kukuk@xxxxxxx>
* Anas Nashif <nashif@xxxxxxx>
*
- * $Id: Ldap.ycp 41470 2007-10-19 09:12:39Z jsuchome $
+ * $Id: Ldap.ycp 41549 2007-10-24 14:31:11Z jsuchome $
*/
{
@@ -2060,14 +2060,16 @@
});
// create user configuration object
- if (GetLDAPEntry (user_dn) == $[])
+ if (config_modules[user_dn]:$[] == $[] &&
+ GetLDAPEntry (user_dn) == $[])
{
modules [user_dn] = CreateModule (
get_cn (user_dn), "suseuserconfiguration");
}
// create group configuration object
- if (GetLDAPEntry (group_dn) == $[])
+ if (config_modules[group_dn]:$[] == $[] &&
+ GetLDAPEntry (group_dn) == $[])
{
modules [group_dn] = CreateModule (
get_cn (group_dn), "susegroupconfiguration");
@@ -2087,7 +2089,8 @@
update_modules = true;
}
- if (GetLDAPEntry (template_dn) == $[])
+ if (templates[template_dn]:$[] == $[] &&
+ GetLDAPEntry (template_dn) == $[])
{
templs [template_dn] = CreateTemplate (
get_cn (template_dn), ["suseuserconfiguration"]);
@@ -2103,7 +2106,8 @@
update_modules = true;
}
- if (GetLDAPEntry (template_dn) == $[])
+ if (templates[template_dn]:$[] == $[] &&
+ GetLDAPEntry (template_dn) == $[])
{
templs [template_dn] = CreateTemplate (
get_cn (template_dn), ["susegroupconfiguration"]);
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ldap-client-2.16.1/src/ui.ycp
new/yast2-ldap-client-2.16.2/src/ui.ycp
--- old/yast2-ldap-client-2.16.1/src/ui.ycp 2007-10-24 16:18:26.000000000
+0200
+++ new/yast2-ldap-client-2.16.2/src/ui.ycp 2007-10-24 16:31:12.000000000
+0200
@@ -5,7 +5,7 @@
* Authors: Thorsten Kukuk <kukuk@xxxxxxx>
* Anas Nashif <nashif@xxxxxxx>
*
- * $Id: ui.ycp 39910 2007-08-02 15:33:45Z jsuchome $
+ * $Id: ui.ycp 41549 2007-10-24 14:31:11Z jsuchome $
*
* All user interface functions.
*/
diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn
--exclude=.svnignore old/yast2-ldap-client-2.16.1/VERSION
new/yast2-ldap-client-2.16.2/VERSION
--- old/yast2-ldap-client-2.16.1/VERSION 2007-10-24 16:17:53.000000000
+0200
+++ new/yast2-ldap-client-2.16.2/VERSION 2007-11-12 14:44:48.000000000
+0100
@@ -1 +1 @@
-2.16.1
+2.16.2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Remember to have fun...
---------------------------------------------------------------------
To unsubscribe, e-mail: opensuse-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-commit+help@xxxxxxxxxxxx
| < Previous | Next > |