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-07-04 13:38:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vagrant-sshfs (Old) and /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.1548 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vagrant-sshfs" Mon Jul 4 13:38:15 2022 rev:20 rq:986610 version:1.3.7 Changes: -------- --- /work/SRC/openSUSE:Factory/vagrant-sshfs/vagrant-sshfs.changes 2022-06-23 10:24:49.819776496 +0200 +++ /work/SRC/openSUSE:Factory/.vagrant-sshfs.new.1548/vagrant-sshfs.changes 2022-07-04 13:38:16.556574228 +0200 @@ -1,0 +2,6 @@ +Fri Jul 1 12:33:19 UTC 2022 - Dominique Leuenberger <dims...@opensuse.org> + +- Fix testsuite.sh: Follow changes of version 1.3.7, use + reverse_mount with uid/gid (boo#1200894). + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vagrant-sshfs.spec ++++++ --- /var/tmp/diff_new_pack.PYhiJh/_old 2022-07-04 13:38:17.112574987 +0200 +++ /var/tmp/diff_new_pack.PYhiJh/_new 2022-07-04 13:38:17.120574998 +0200 @@ -1,5 +1,5 @@ # -# spec file for package vagrant-sshfs +# spec file # # Copyright (c) 2022 SUSE LLC # @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # + %global rb_build_versions %rb_default_ruby %global rb_build_abi %rb_default_ruby_abi %global rb_ruby_suffix %rb_default_ruby_suffix ++++++ testsuite.sh ++++++ --- /var/tmp/diff_new_pack.PYhiJh/_old 2022-07-04 13:38:17.152575041 +0200 +++ /var/tmp/diff_new_pack.PYhiJh/_new 2022-07-04 13:38:17.152575041 +0200 @@ -7,21 +7,21 @@ vagrant destroy -f || true popd - fusermount -uz /tmp/reverse_mount_etc || true + fusermount -uz /tmp/reverse_mount_etc_uid_gid || true vagrant destroy -f || true - rmdir /tmp/reverse_mount_etc + rmdir /tmp/reverse_mount_etc_uid_gid/ rm -rf .vagrant "${OTHER_MACHINE_DIR}" } trap cleanup EXIT -mkdir /tmp/reverse_mount_etc 2>/dev/null +mkdir /tmp/reverse_mount_etc_uid_gid 2>/dev/null if [ $? -ne 0 ]; then - OWNER=$(stat -c '%U' /tmp/reverse_mount_etc) + OWNER=$(stat -c '%U' /tmp/reverse_mount_etc_uid_gid) if [ "$OWNER" != "$USER" ]; then - echo "/tmp/reverse_mount_etc already exists and is owned by a different user. refusing to continue" 1>&2 + echo "/tmp/reverse_mount_etc_uid_gid already exists and is owned by a different user. refusing to continue" 1>&2 exit 1 fi fi @@ -47,7 +47,7 @@ FORWARD_MACHINE_ID=$(vagrant ssh -- cat /tmp/forward_normal_mount_etc/machine-id) -REVERSE_MACHINE_ID=$(cat /tmp/reverse_mount_etc/machine-id) +REVERSE_MACHINE_ID=$(cat /tmp/reverse_mount_etc_uid_gid/machine-id) vagrant destroy -f