Hello community, here is the log from the commit of package yast2-samba-client checked in at Sat Apr 1 00:10:56 CEST 2006. -------- --- yast2-samba-client/yast2-samba-client.changes 2006-03-27 09:25:59.000000000 +0200 +++ yast2-samba-client/yast2-samba-client.changes 2006-03-31 17:19:03.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Mar 29 20:03:15 CEST 2006 - jsuchome@suse.cz + +- fixed dig call (#158726) +- 2.13.14 + +------------------------------------------------------------------- Old: ---- yast2-samba-client-2.13.13.tar.bz2 New: ---- yast2-samba-client-2.13.14.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-samba-client.spec ++++++ --- /var/tmp/diff_new_pack.hDsuTZ/_old 2006-04-01 00:10:48.000000000 +0200 +++ /var/tmp/diff_new_pack.hDsuTZ/_new 2006-04-01 00:10:48.000000000 +0200 @@ -1,5 +1,5 @@ # -# spec file for package yast2-samba-client (Version 2.13.13) +# spec file for package yast2-samba-client (Version 2.13.14) # # Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine @@ -11,12 +11,12 @@ # norootforbuild Name: yast2-samba-client -Version: 2.13.13 +Version: 2.13.14 Release: 1 License: GPL Group: System/YaST BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source0: yast2-samba-client-2.13.13.tar.bz2 +Source0: yast2-samba-client-2.13.14.tar.bz2 prefix: /usr BuildRequires: perl-XML-Writer update-desktop-files yast2-devtools yast2-pam yast2-perl-bindings yast2-testsuite Requires: yast2 yast2-pam yast2-kerberos-client @@ -34,7 +34,7 @@ Stanislav Visnovsky <visnov@suse.cz> %prep -%setup -n yast2-samba-client-2.13.13 +%setup -n yast2-samba-client-2.13.14 %build %{prefix}/bin/y2tool y2autoconf @@ -71,6 +71,9 @@ %doc %{prefix}/share/doc/packages/yast2-samba-client %changelog -n yast2-samba-client +* Wed Mar 29 2006 - jsuchome@suse.cz +- fixed dig call (#158726) +- 2.13.14 * Mon Mar 27 2006 - jsuchome@suse.cz - stop services automatically with only 1 section in smb.conf (#160517) - 2.13.13 ++++++ yast2-samba-client-2.13.13.tar.bz2 -> yast2-samba-client-2.13.14.tar.bz2 ++++++ diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.13/VERSION new/yast2-samba-client-2.13.14/VERSION --- old/yast2-samba-client-2.13.13/VERSION 2006-03-17 10:50:30.000000000 +0100 +++ new/yast2-samba-client-2.13.14/VERSION 2006-03-29 20:03:58.000000000 +0200 @@ -1 +1 @@ -2.13.13 +2.13.14 diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.13/src/Samba.ycp new/yast2-samba-client-2.13.14/src/Samba.ycp --- old/yast2-samba-client-2.13.13/src/Samba.ycp 2006-03-17 10:49:37.000000000 +0100 +++ new/yast2-samba-client-2.13.14/src/Samba.ycp 2006-03-27 09:26:24.000000000 +0200 @@ -4,7 +4,7 @@ * Summary: Data for configuration of samba-client, input and output functions. * Authors: Stanislav Visnovsky <visnov@suse.cz> * - * $Id: Samba.ycp 29061 2006-03-16 16:56:50Z jsuchome $ + * $Id: Samba.ycp 29396 2006-03-27 07:26:21Z jsuchome $ * * Representation of the configuration of samba-client. * Input and output routines. diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.13/src/SambaAD.pm new/yast2-samba-client-2.13.14/src/SambaAD.pm --- old/yast2-samba-client-2.13.13/src/SambaAD.pm 2006-03-16 17:56:53.000000000 +0100 +++ new/yast2-samba-client-2.13.14/src/SambaAD.pm 2006-03-31 09:24:14.000000000 +0200 @@ -57,14 +57,14 @@ # use DNS for finding DC if (FileUtils->Exists ("/usr/bin/dig")) { - my $out = SCR->Execute (".target.bash_output", "dig _ldap._tcp.pdc._msdcs.$workgroup +noall +answer +authority"); + my $out = SCR->Execute (".target.bash_output", "dig -t srv _ldap._tcp.pdc._msdcs.$workgroup +noall +answer"); y2debug ("dig output: ", Dumper ($out)); foreach my $line (split (/\n/,$out->{"stdout"} || "")) { y2debug ("line: $line"); next if $server ne ""; if ($line =~ m/$workgroup/) { - $server = (split (/[ \t]/, $line))[4] || "."; + $server = (split (/[ \t]/, $line))[7] || "."; chop $server; } } diff -urN --exclude=CVS --exclude=.cvsignore --exclude=.svn --exclude=.svnignore old/yast2-samba-client-2.13.13/src/routines.ycp new/yast2-samba-client-2.13.14/src/routines.ycp --- old/yast2-samba-client-2.13.13/src/routines.ycp 2006-03-25 12:23:57.000000000 +0100 +++ new/yast2-samba-client-2.13.14/src/routines.ycp 2006-03-27 09:26:24.000000000 +0200 @@ -4,7 +4,7 @@ * Summary: Miscelanous functions for configuration of samba-client. * Authors: Stanislav Visnovsky <visnov@suse.cz> * - * $Id: routines.ycp 29049 2006-03-16 13:51:41Z jsuchome $ + * $Id: routines.ycp 29396 2006-03-27 07:26:21Z jsuchome $ */ { ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de