Hello community,

here is the log from the commit of package yast2-auth-client for 
openSUSE:Factory checked in at 2014-04-25 16:12:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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-04-05 16:48:29.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-auth-client.new/yast2-auth-client.changes 
2014-04-25 16:12:35.000000000 +0200
@@ -1,0 +2,8 @@
+Wed Apr 16 10:14:23 UTC 2014 - vark...@suse.com
+
+- 3.1.12
+- Add some ipa parameter.
+- Use ComboBox if only certain values are allowed for a parameter.
+- bnc#870645 - yast/wfm.rb:202 Internal error. undefined method `each_key' for 
nil:NilClass 
+
+-------------------------------------------------------------------

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

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

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

Other differences:
------------------
++++++ yast2-auth-client.spec ++++++
--- /var/tmp/diff_new_pack.7zSrCI/_old  2014-04-25 16:12:35.000000000 +0200
+++ /var/tmp/diff_new_pack.7zSrCI/_new  2014-04-25 16:12:35.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-auth-client
-Version:        3.1.11
+Version:        3.1.12
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-auth-client-3.1.11.tar.bz2 -> yast2-auth-client-3.1.12.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.11/package/yast2-auth-client.changes 
new/yast2-auth-client-3.1.12/package/yast2-auth-client.changes
--- old/yast2-auth-client-3.1.11/package/yast2-auth-client.changes      
2014-04-04 15:32:49.000000000 +0200
+++ new/yast2-auth-client-3.1.12/package/yast2-auth-client.changes      
2014-04-23 09:58:42.000000000 +0200
@@ -1,4 +1,12 @@
 -------------------------------------------------------------------
+Wed Apr 16 10:14:23 UTC 2014 - vark...@suse.com
+
+- 3.1.12
+- Add some ipa parameter.
+- Use ComboBox if only certain values are allowed for a parameter.
+- bnc#870645 - yast/wfm.rb:202 Internal error. undefined method `each_key' for 
nil:NilClass 
+
+-------------------------------------------------------------------
 Tue Apr  1 16:17:08 UTC 2014 - vark...@suse.com
 
 - bnc#870649 - Typo in yast2 sssd configuration
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.11/package/yast2-auth-client.spec 
new/yast2-auth-client-3.1.12/package/yast2-auth-client.spec
--- old/yast2-auth-client-3.1.11/package/yast2-auth-client.spec 2014-04-04 
15:32:49.000000000 +0200
+++ new/yast2-auth-client-3.1.12/package/yast2-auth-client.spec 2014-04-23 
09:58:42.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-auth-client
-Version:        3.1.11
+Version:        3.1.12
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-auth-client-3.1.11/src/include/dialogs.rb 
new/yast2-auth-client-3.1.12/src/include/dialogs.rb
--- old/yast2-auth-client-3.1.11/src/include/dialogs.rb 2014-04-04 
15:32:49.000000000 +0200
+++ new/yast2-auth-client-3.1.12/src/include/dialogs.rb 2014-04-23 
09:58:42.000000000 +0200
@@ -227,6 +227,10 @@
         return ret
     end
 
+    def MakeSelectedList(list,value)
+       return list.map { |k| k == value ? Item(Id(k),k,true) : Item(Id(k),k) }
+    end
+
     def BuildSection(section)
         _term = VBox()
         #Empy section
@@ -258,6 +262,7 @@
         _params.each { |k|
            type = GetParameterType(k)
            v    = AuthClient.auth["sssd_conf"][section][k]
+           vals = GetParameterValues(k)
            case type 
              when "int"
                 _term.params << Left( IntField( Id(k), k, 0, @MAXINT, v.to_i ))
@@ -268,7 +273,11 @@
                    _term.params << Left( CheckBox( Id(k), k, false ))
                 end   
              when "string"
-                _term.params << Left( InputField(Id(k), Opt(:hstretch), k, v))
+                if vals.empty?
+                   _term.params << Left( InputField(Id(k), Opt(:hstretch), k, 
v))
+                else
+                   _term.params << Left( ComboBox(Id(k),k, 
MakeSelectedList(vals,v)))
+                end
            end
         }
         return _term
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-auth-client-3.1.11/src/include/sssd-parameters.rb 
new/yast2-auth-client-3.1.12/src/include/sssd-parameters.rb
--- old/yast2-auth-client-3.1.11/src/include/sssd-parameters.rb 2014-03-27 
10:18:08.000000000 +0100
+++ new/yast2-auth-client-3.1.12/src/include/sssd-parameters.rb 2014-04-23 
09:58:42.000000000 +0200
@@ -1132,6 +1132,35 @@
 #                            "desc" => _("")
 #                        }
                   },
+                #The Active Directory domain section
+                "ipa" => {
+                        "ipa_domain" => {
+                            "type" => "string",
+                            "desc" => _("Specifies the name of the IPA 
domain.")
+                        },
+                        "ipa_server," => {
+                            "type" => "string",
+                            "desc" => _("The comma-separated list of IP 
addresses or hostnames of the IPA servers to which SSSD should connect in the 
order of preference.")
+                        },
+                        "ipa_hostname" => {
+                            "type" => "string",
+                            "desc" => _("May be set on machines where the 
hostname(5) does not reflect the fully qualified name.")
+                        },
+                        "dyndns_update" => {
+                            "type" => "boolean",
+                            "def"  => "False",
+                            "desc" => _("This option tells SSSD to 
automatically update the DNS server built into FreeIPA v2 with the IP address 
of this client.")
+                        },
+                        "dyndns_ttl" => {
+                            "type" => "int",
+                            "def"  => "1200",
+                            "desc" => _("The TTL to apply to the client DNS 
record when updating it.")
+                        },
+                        "dyndns_iface" => {
+                            "type" => "string",
+                            "desc" => _("Choose the interface whose IP address 
should be used for dynamic DNS updates.")
+                        }
+               }
 
         }
     end

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to