Mailinglist Archive: opensuse-commit (480 mails)

< Previous Next >
commit libzypp for openSUSE:Factory
  • From: root@xxxxxxxxxxxxxxx (h_root)
  • Date: Wed, 04 Nov 2009 10:38:15 +0100
  • Message-id: <20091104093815.B5E5820299@xxxxxxxxxxxxxxx>

Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory
checked in at Wed Nov 4 10:38:15 CET 2009.



--------
--- libzypp/libzypp.changes 2009-11-02 17:20:03.000000000 +0100
+++ /mounts/work_src_done/STABLE/libzypp/libzypp.changes 2009-11-02
20:30:03.000000000 +0100
@@ -1,0 +2,7 @@
+Mon Nov 2 20:03:31 CET 2009 - ma@xxxxxxx
+
+- CIFS/SMB: Support mountoption 'noguest' to prevent passing 'guest' option
+ to mount. "cifs://server/share/path?mountoptions=noguest,ro" (bnc #547354)
+- version 6.21.3 (19)
+
+-------------------------------------------------------------------

calling whatdependson for head-i586


Old:
----
libzypp-6.21.2.tar.bz2

New:
----
libzypp-6.21.3.tar.bz2

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

Other differences:
------------------
++++++ libzypp.spec ++++++
--- /var/tmp/diff_new_pack.vw7xFH/_old 2009-11-04 10:36:15.000000000 +0100
+++ /var/tmp/diff_new_pack.vw7xFH/_new 2009-11-04 10:36:15.000000000 +0100
@@ -1,5 +1,5 @@
#
-# spec file for package libzypp (Version 6.21.2)
+# spec file for package libzypp (Version 6.21.3)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -24,7 +24,7 @@
BuildRoot: %{_tmppath}/%{name}-%{version}-build
AutoReqProv: on
Summary: Package, Patch, Pattern, and Product Management
-Version: 6.21.2
+Version: 6.21.3
Release: 1
Source: %{name}-%{version}.tar.bz2
Source1: %{name}-rpmlintrc

++++++ libzypp-6.21.2.tar.bz2 -> libzypp-6.21.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libzypp-6.21.2/VERSION.cmake
new/libzypp-6.21.3/VERSION.cmake
--- old/libzypp-6.21.2/VERSION.cmake 2009-11-02 17:03:16.000000000 +0100
+++ new/libzypp-6.21.3/VERSION.cmake 2009-11-02 20:13:08.000000000 +0100
@@ -61,8 +61,8 @@
SET(LIBZYPP_MAJOR "6")
SET(LIBZYPP_COMPATMINOR "19")
SET(LIBZYPP_MINOR "21")
-SET(LIBZYPP_PATCH "2")
+SET(LIBZYPP_PATCH "3")
#
-# LAST RELEASED: 6.21.2 (19)
+# LAST RELEASED: 6.21.3 (19)
# (The number in parenthesis is LIBZYPP_COMPATMINOR)
#=======
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libzypp-6.21.2/package/libzypp.changes
new/libzypp-6.21.3/package/libzypp.changes
--- old/libzypp-6.21.2/package/libzypp.changes 2009-11-02 17:03:16.000000000
+0100
+++ new/libzypp-6.21.3/package/libzypp.changes 2009-11-02 20:13:08.000000000
+0100
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Mon Nov 2 20:03:31 CET 2009 - ma@xxxxxxx
+
+- CIFS/SMB: Support mountoption 'noguest' to prevent passing 'guest' option
+ to mount. "cifs://server/share/path?mountoptions=noguest,ro" (bnc #547354)
+- version 6.21.3 (19)
+
+-------------------------------------------------------------------
Mon Nov 2 16:35:33 CET 2009 - ma@xxxxxxx

- CheckAccessDeleted: Avoid reporting false positive due to insufficient
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libzypp-6.21.2/zypp/media/MediaCIFS.cc
new/libzypp-6.21.3/zypp/media/MediaCIFS.cc
--- old/libzypp-6.21.2/zypp/media/MediaCIFS.cc 2009-11-02 17:03:15.000000000
+0100
+++ new/libzypp-6.21.3/zypp/media/MediaCIFS.cc 2009-11-02 20:13:08.000000000
+0100
@@ -174,7 +174,11 @@
string username = _url.getUsername();
string password = _url.getPassword();

- options["guest"]; // prevent smbmount from asking for password
+ // Use 'guest' option unless explicitly disabled (bnc #547354)
+ if ( options.has( "noguest" ) )
+ options.erase( "noguest" );
+ else
+ options["guest"];

if ( ! options.has( "rw" ) ) {
options["ro"];
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/libzypp-6.21.2/zypp/media/MediaManager.h
new/libzypp-6.21.3/zypp/media/MediaManager.h
--- old/libzypp-6.21.2/zypp/media/MediaManager.h 2009-11-02
17:03:15.000000000 +0100
+++ new/libzypp-6.21.3/zypp/media/MediaManager.h 2009-11-02
20:13:08.000000000 +0100
@@ -313,6 +313,7 @@
* \code
* "cifs://servername/share/path/on/the/share"
*
"cifs://username:passwd@servername/share/path/on/the/share?mountoptions=ro"
+ *
"cifs://username:passwd@servername/share/path/on/the/share?mountoptions=noguest"
* "smb://servername/share/path/on/the/share"
*
"smb://username:passwd@servername/share/path/on/the/share?mountoptions=ro"
* \endcode
@@ -321,7 +322,9 @@
* - Query parameters:
* - <tt>mountoptions</tt>:
* The mount options separated by a comma ','. Default are the
- * "ro" and "guest" options.
+ * "ro" and "guest" options. Specify "noguest" to turn off
+ * "guest". This is necessary if Samba is configured to reject
+ * guest connections.
* - <tt>workgroup</tt> or <tt>domain</tt>:
* The name of the workgroup.
* - <tt>username</tt>:


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



Remember to have fun...

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

< Previous Next >
List Navigation
This Thread