Hello community,

here is the log from the commit of package yast2-auth-client for 
openSUSE:Factory checked in at 2014-03-28 12:14:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-auth-client (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-auth-client.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-auth-client"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-auth-client/yast2-auth-client.changes      
2014-03-21 13:51:42.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new/yast2-auth-client.changes 
2014-03-28 12:14:27.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Mar 26 11:27:22 UTC 2014 - [email protected]
+
+- bnc#870075 - Typos in aut-client.pot
+- Fix handling domain names with "."
+- 3.1.10 
+
+-------------------------------------------------------------------

Old:
----
  yast2-auth-client-3.1.9.tar.bz2

New:
----
  yast2-auth-client-3.1.10.tar.bz2

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

Other differences:
------------------
++++++ yast2-auth-client.spec ++++++
--- /var/tmp/diff_new_pack.sP1hK6/_old  2014-03-28 12:14:27.000000000 +0100
+++ /var/tmp/diff_new_pack.sP1hK6/_new  2014-03-28 12:14:27.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-auth-client
-Version:        3.1.9
+Version:        3.1.10
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-auth-client-3.1.9.tar.bz2 -> yast2-auth-client-3.1.10.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.9/package/yast2-auth-client.changes 
new/yast2-auth-client-3.1.10/package/yast2-auth-client.changes
--- old/yast2-auth-client-3.1.9/package/yast2-auth-client.changes       
2014-03-20 12:28:07.000000000 +0100
+++ new/yast2-auth-client-3.1.10/package/yast2-auth-client.changes      
2014-03-27 10:18:08.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Wed Mar 26 11:27:22 UTC 2014 - [email protected]
+
+- bnc#870075 - Typos in aut-client.pot
+- Fix handling domain names with "."
+- 3.1.10 
+
+-------------------------------------------------------------------
 Tue Mar 18 10:34:46 UTC 2014 - [email protected]
 
 - Add missing autoyast methods (bnc#868695)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.9/package/yast2-auth-client.spec 
new/yast2-auth-client-3.1.10/package/yast2-auth-client.spec
--- old/yast2-auth-client-3.1.9/package/yast2-auth-client.spec  2014-03-20 
12:28:07.000000000 +0100
+++ new/yast2-auth-client-3.1.10/package/yast2-auth-client.spec 2014-03-27 
10:18:08.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-auth-client
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-auth-client
-Version:        3.1.9
+Version:        3.1.10
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-auth-client-3.1.9/src/include/dialogs.rb 
new/yast2-auth-client-3.1.10/src/include/dialogs.rb
--- old/yast2-auth-client-3.1.9/src/include/dialogs.rb  2014-03-20 
12:28:07.000000000 +0100
+++ new/yast2-auth-client-3.1.10/src/include/dialogs.rb 2014-03-27 
10:18:08.000000000 +0100
@@ -30,7 +30,7 @@
     def DeleteDomain
         _Domain = Convert.to_string( UI.QueryWidget(Id(:domains), 
:CurrentItem))
         _name   = _Domain.gsub("domain/","")
-        if ! Popup.YesNo( Builtins.sformat(_("Do you realy want to delete the 
domain '%1'." ),_name) )
+        if ! Popup.YesNo( Builtins.sformat(_("Do you really want to delete the 
domain '%1'?" ),_name) )
            return
         end
         if AuthClient.auth["sssd_conf"]["sssd"].has_key?("domains")
@@ -411,8 +411,8 @@
 
    def CheckSettings
        _ret = :next
-       _inactiv_domains = [] # List of domain which ar defined but not 
activated
-       _activ_domains = 0    # Count of activ domains 
+       _inactive_domains = [] # List of domain which ar defined but not 
activated
+       _active_domains = 0    # Count of active domains 
        _domains = ListDomains()
 
        if _domains != []
@@ -423,24 +423,24 @@
              }
              _domains.each { |d| 
                if ! _acd.include?(d)
-                        _inactiv_domains.push(d)
+                        _inactive_domains.push(d)
                else
-                     _activ_domains = _activ_domains + 1
+                     _active_domains = _active_domains + 1
                end
              }
           end
-          if _activ_domains == 0
+          if _active_domains == 0
              if ! Popup.YesNo( _("There are no activated domains in the [sssd] 
section.\n" +
                                  "sssd will not be started. Only local 
authentication will be available.\n" +
-                                 "Do you want to write this configuration?")
-                               )
+                                 "Do you want to write this configuration?"));
                  return :go_on
              end
           end
-          if _inactiv_domains != []
-             if ! Popup.YesNo( _("There are some domains you have not 
activated it:\n" +
-                                 _inactiv_domains.join(", ") + "\n" +
-                                 "Do you want to write this configuration?")
+          if _inactive_domains != []
+               # TRANSLATORS: %s stands for list of inactive domains
+             if ! Popup.YesNo( _("There are some domains you have not 
activated:\n" +
+                                  "%s \n" +
+                                "Do you want to write this configuration?") % 
_inactive_domains.join(", ")
                                )
                  return :go_on
              end
@@ -455,7 +455,7 @@
           if ! Popup.YesNo(
             _( "Your system is configured for using nss_ldap.\n" +
            "This module is designed to configure your system via sssd.\n" +
-           "If you are using this module your nss_ldap configuration will be 
removed.\n" +
+           "If you continue, your nss_ldap configuration will be removed.\n" +
            "Do you want to continue?" )
           )
             return :abort
@@ -465,7 +465,7 @@
           if ! Popup.YesNo(
             _( "Your system is configured as OES client.\n" +
            "This module is designed to configure your system via sssd.\n" +
-           "If you are using this module your OES client configuration will be 
deactivated.\n" +
+           "If you continue, your OES client configuration will be 
deactivated.\n" +
            "Do you want to continue?" )
           )
             return :abort
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.9/src/include/sssd-parameters.rb 
new/yast2-auth-client-3.1.10/src/include/sssd-parameters.rb
--- old/yast2-auth-client-3.1.9/src/include/sssd-parameters.rb  2014-03-20 
12:28:07.000000000 +0100
+++ new/yast2-auth-client-3.1.10/src/include/sssd-parameters.rb 2014-03-27 
10:18:08.000000000 +0100
@@ -29,7 +29,7 @@
                         "domains" => {
                             "type" => "string",
                             "desc" => _("SSSD can use more domains at the same 
time, but at least one must be configured or SSSD won't start.") +
-                                      _("This parameter described the list of 
domains in the order you want them to be queried.")
+                                      _("This parameter contains the list of 
domains in the order these will be queried.")
                         },
                         "re_expression" => {
                             "type" => "string",
@@ -100,7 +100,7 @@
                         "enum_cache_timeout" => {
                             "type" => "int",
                             "def"  =>  120,
-                            "desc" => _("How many seconds should nss_sss cache 
enumerations (requests for info about all users)")
+                            "desc" => _("How many seconds should cache nss_sss 
enumerations (requests for info about all users)?")
                         },
                         "entry_cache_nowait_percentage" => {
                             "type" => "int",
@@ -125,7 +125,7 @@
                         "filter_users_in_groups" => {
                             "type" => "boolean",
                             "def"  =>  true,
-                            "desc" => _("If you want filtered user still be 
group members set this option to false.")
+                            "desc" => _("If you want filtered user to still be 
group members set this option to false.")
                         },
                         "override_homedir" => {
                             "type" => "string",
@@ -164,7 +164,7 @@
                         "memcache_timeout" => {
                             "type" => "int",
                             "def"  => 300,
-                            "desc" => _("Specifies time in seconds for which 
records in the in-memory cache will be valid")
+                            "desc" => _("Specifies time in seconds for which 
records in the in-memory cache will be valid.")
                         }
                    },
                    #PAM configuration options
@@ -172,7 +172,7 @@
                         "offline_credentials_expiration" => {
                             "type" => "int",
                             "def"  => 0,
-                            "desc" => _("If the authentication provider is 
offline, how long should we allow cached logins (in days since the last 
successful online login).")
+                            "desc" => _("If the authentication provider is 
offline, how long we should allow cached logins (in days since the last 
successful online login).")
                         },
                         "offline_failed_login_attempts" => {
                             "type" => "int",
@@ -218,7 +218,7 @@
                         "autofs_negative_timeout" => {
                             "type" => "int",
                             "def"  => 15,
-                            "desc" => _("Specifies for how many seconds should 
the autofs responder negative cache hits before asking the back end again.")
+                            "desc" => _("Specifies for how many seconds the 
autofs responder should cache negative hits before asking the back end again.")
                         }
                   },
                   #SSH configuration options
@@ -255,47 +255,47 @@
                         "force_timeout" => {
                             "type" => "int",
                             "def"  => 60,
-                            "desc" => _("If the service does not terminate 
after “force_timeout” seconds, the monitor will forcibly shut it down by 
sending a SIGKILL signal")
+                            "desc" => _("If the service does not terminate 
after “force_timeout” seconds, the monitor will forcibly shut it down by 
sending a SIGKILL signal.")
                         },
                         "entry_cache_timeout" => {
                             "type" => "int",
                             "def"  => 5400,
-                            "desc" => _("How many seconds should nss_sss 
consider entries valid before asking the backend again.")
+                            "desc" => _("How many seconds nss_sss schould 
consider entries valid before asking the backend again.")
                         },
                         "entry_cache_user_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should nss_sss 
consider user entries valid before asking the backend again.")
+                            "desc" => _("How many seconds nss_sss schould 
consider user entries valid before asking the backend again.")
                         },
                         "entry_cache_group_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should nss_sss 
consider group entries valid before asking the backend again.")
+                            "desc" => _("How many seconds nss_sss schould 
consider group entries valid before asking the backend again.")
                         },
                         "entry_cache_netgroup_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should nss_sss 
consider netgroup entries valid before asking the backend again.")
+                            "desc" => _("How many seconds nss_sss schould 
consider netgroup entries valid before asking the backend again.")
                         },
                         "entry_cache_service_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should nss_sss 
consider service entries valid before asking the backend again.")
+                            "desc" => _("How many seconds nss_sss schould 
consider service entries valid before asking the backend again.")
                         },
                         "entry_cache_sudo_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should sudo consider 
rules valid before asking the backend again.")
+                            "desc" => _("How many seconds sudo should consider 
rules valid before asking the backend again.")
                         },
                         "entry_cache_autofs_timeout" => {
                             "type" => "int",
                             "def"  => "entry_cache_timeout",
-                            "desc" => _("How many seconds should the autofs 
service consider automounter maps valid before asking the backend again.")
+                            "desc" => _("How many seconds the autofs service 
should consider automounter maps valid before asking the backend again.")
                         },
                         "cache_credentials" => {
                             "type" => "boolean",
                             "def"  => false,
-                            "desc" => _("Determines if user credentials are 
also cached in the local LDB cache")
+                            "desc" => _("Determines if user credentials are 
also cached in the local LDB cache.")
                         },
                         "account_cache_expiration" => {
                             "type" => "int",
@@ -383,7 +383,7 @@
                         },
                         "dns_discovery_domain" => {
                             "type" => "string",
-                            "def"  => _("Use the domain part of machine's 
hostname"),
+                            "def"  => _("Use the domain part of machine's 
hostname."),
                             "desc" => _("If service discovery is used in the 
back end, specifies the domain part of the service discovery DNS query.")
                         },
                         "override_gid" => {
@@ -940,7 +940,7 @@
                         "ldap_access_filter" => {
                             "type" => "string",
                             "def"  => "",
-                            "desc" => _("If using access_provider = ldap and 
ldap_access_order = filter (default), this option is mandatory. It specifies an 
LDAP search filter criteria that must be met for the user to be granted access 
on this host.")
+                            "desc" => _("If using access_provider = ldap and 
ldap_access_order = filter (default), this option is mandatory. It specifies an 
LDAP search filter criterion that must be met for the user to be granted access 
on this host.")
                         },
                         "ldap_account_expire_policy" => {
                             "type" => "string",
@@ -966,7 +966,7 @@
                         "" => {
                             "type" => "string",
                             "def"  => "",
-                            "desc" => _("")
+                            "desc" => ""
                         },
 #                        "" => {
 #                            "type" => "string",
@@ -1008,7 +1008,7 @@
                         "krb5_ccachedir" => {
                             "type" => "string",
                             "def"  => "/tmp",
-                            "desc" => _("Directory to store credential caches")
+                            "desc" => _("Directory to store credential 
caches.")
                         },        
                         "krb5_ccname_template" => {
                             "type" => "string",
@@ -1041,7 +1041,7 @@
                         },
                         "krb5_lifetime" => {
                             "type" => "string",
-                            "desc" => _("Request ticket with a with a 
lifetime, given as an integer immediately followed by a time unit")
+                            "desc" => _("Request ticket with a with a 
lifetime, given as an integer immediately followed by a time unit.")
                         },
                         "krb5_renew_interval" => {
                             "type" => "int",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-auth-client-3.1.9/src/modules/AuthClient.rb 
new/yast2-auth-client-3.1.10/src/modules/AuthClient.rb
--- old/yast2-auth-client-3.1.9/src/modules/AuthClient.rb       2014-03-20 
12:28:07.000000000 +0100
+++ new/yast2-auth-client-3.1.10/src/modules/AuthClient.rb      2014-03-27 
10:18:08.000000000 +0100
@@ -93,7 +93,7 @@
       if @auth["sssd"]
          _sections = SCR.Dir(path(".etc.sssd_conf.section"))
          _sections.each { |s|
-            _values = SCR.Read(path(".etc.sssd_conf.all."+s ))
+            _values = SCR.Read(path( ".etc.sssd_conf.all.\"#{s}\"" ) )
             _values["value"].each { |v|
               next if v["kind"] == "comment"
               @auth["sssd_conf"][s][v["name"]] = v["value"]
@@ -115,6 +115,7 @@
         # Nothing to do
         return true
       end
+      Builtins.y2milestone("auth: %1",@auth)
       domains  = []
       services = []
       filter_groups = []
@@ -180,14 +181,14 @@
       #Now we write the sssd configuration
       @auth["sssd_conf"].each_key { |s|
         if @auth["sssd_conf"][s].has_key?('DeleteSection')
-           SCR.Write(path(".etc.sssd_conf.section."+s), nil )
+           SCR.Write(path(".etc.sssd_conf.\"#{s}\""), nil )
            next
         end
         @auth["sssd_conf"][s].each_key { |k|
           if @auth["sssd_conf"][s][k] == "##DeleteValue##"
-             SCR.Write(path(".etc.sssd_conf.value."+s+"."+k), nil )
+             SCR.Write(path(".etc.sssd_conf.value.\"#{s}\".#{k}"), nil )
           else
-             
SCR.Write(path(".etc.sssd_conf.value."+s+"."+k),@auth["sssd_conf"][s][k])
+             
SCR.Write(path(".etc.sssd_conf.value.\"#{s}\".#{k}"),@auth["sssd_conf"][s][k])
           end
          if k == "id_provider" or k == "auth_provider" 
             need_sssd[@auth["sssd_conf"][s][k]] = true;
@@ -336,7 +337,7 @@
          summary = _( "System is configured for using OES.\n" )
       end
       if summary == ""
-         summary = _( "System is configured for using /etc/passwd only\n" )
+         summary = _( "System is configured for using /etc/passwd only.\n" )
       end
       summary
     end

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to