Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package vagrant-sshfs for openSUSE:Factory 
checked in at 2022-11-03 19:15:09
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/vagrant-sshfs (Old)
 and      /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.2275 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "vagrant-sshfs"

Thu Nov  3 19:15:09 2022 rev:21 rq:1033092 version:1.3.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/vagrant-sshfs/vagrant-sshfs.changes      
2022-07-04 13:38:16.556574228 +0200
+++ /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.2275/vagrant-sshfs.changes    
2022-11-03 19:15:51.964600799 +0100
@@ -1,0 +2,7 @@
+Thu Nov  3 15:23:38 UTC 2022 - Dan ??erm??k <dcer...@suse.com>
+
+- Add 0002-Use-the-root-group-for-the-synced-folders.patch to fix boo#1200894
+  Upstream started setting the wheel group for the synced folders, but this is
+  not available in the opensuse boxes. Thus we use the root group instead.
+
+-------------------------------------------------------------------

New:
----
  0002-Use-the-root-group-for-the-synced-folders.patch

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

Other differences:
------------------
++++++ vagrant-sshfs.spec ++++++
--- /var/tmp/diff_new_pack.e42c0I/_old  2022-11-03 19:15:52.460603715 +0100
+++ /var/tmp/diff_new_pack.e42c0I/_new  2022-11-03 19:15:52.464603739 +0100
@@ -37,6 +37,8 @@
 Source3:        testsuite.sh
 # FIX-OPENSUSE use the Tumbleweed.$(uname -m) vagrant box instead of 
fedora/*-cloud-base
 Patch0:         0001-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch
+# FIX-OPENSUSE Use the root group for the synced folders (boo#1200894)
+Patch1:         0002-Use-the-root-group-for-the-synced-folders.patch
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  vagrant >= 1.9.1

++++++ 0001-Use-opensuse-Tumbleweed.-uname-m-box-instead-of-Fedo.patch ++++++
--- /var/tmp/diff_new_pack.e42c0I/_old  2022-11-03 19:15:52.504603974 +0100
+++ /var/tmp/diff_new_pack.e42c0I/_new  2022-11-03 19:15:52.508603998 +0100
@@ -1,7 +1,8 @@
 From 4b81caf95e5dc8e5eeba3f10f5c61584ddfd3101 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dcer...@suse.com>
 Date: Wed, 1 Apr 2020 22:34:10 +0200
-Subject: [PATCH] Use opensuse/Tumbleweed.$(uname -m) box instead of Fedora/36
+Subject: [PATCH 1/2] Use opensuse/Tumbleweed.$(uname -m) box instead of
+ Fedora/36
 
 ---
  test/misc/Vagrantfile | 2 +-
@@ -21,6 +22,6 @@
      config.vm.define host do | tmp |
          tmp.vm.hostname = host
 -- 
-2.35.3
+2.38.1
 
 

++++++ 0002-Use-the-root-group-for-the-synced-folders.patch ++++++
>From ac19a1a9b9408455b0796aa2410d41d9f2514a1c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= <dcer...@suse.com>
Date: Thu, 3 Nov 2022 15:47:22 +0100
Subject: [PATCH 2/2] Use the root group for the synced folders

The wheel group does not exist by default in opensuse/Tumbleweed and requiring
it breaks the tests.
---
 test/misc/Vagrantfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/misc/Vagrantfile b/test/misc/Vagrantfile
index 92c4d16..f4115cb 100644
--- a/test/misc/Vagrantfile
+++ b/test/misc/Vagrantfile
@@ -14,7 +14,7 @@ Vagrant.configure(2) do |config|
         type: "sshfs",
         mount_options: ['ro', 'default_permissions'],
         owner: "root",
-        group: "wheel"
+        group: "root"
 
     # Test a forward mount to a location that is a symbolic link
     # https://github.com/dustymabe/vagrant-sshfs/issues/44
@@ -37,7 +37,7 @@ Vagrant.configure(2) do |config|
         type: "sshfs",
         reverse: true,
         owner: "root",
-        group: "wheel",
+        group: "root",
         mount_options: ['ro']
 
     host = 'sshfs-tests'
-- 
2.38.1

Reply via email to