Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package yast2-nfs-client for
openSUSE:Factory checked in at 2021-09-28 19:16:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-nfs-client (Old)
and /work/SRC/openSUSE:Factory/.yast2-nfs-client.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-nfs-client"
Tue Sep 28 19:16:25 2021 rev:89 rq:921954 version:4.4.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-nfs-client/yast2-nfs-client.changes
2021-05-02 18:36:19.644893765 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-nfs-client.new.1899/yast2-nfs-client.changes
2021-09-28 19:16:32.416186398 +0200
@@ -1,0 +2,6 @@
+Tue Jun 29 09:43:08 UTC 2021 - Josef Reidinger <[email protected]>
+
+- Support systemd mount options in fstab (bsc#1187781)
+- 4.4.1
+
+-------------------------------------------------------------------
Old:
----
yast2-nfs-client-4.4.0.tar.bz2
New:
----
yast2-nfs-client-4.4.1.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-nfs-client.spec ++++++
--- /var/tmp/diff_new_pack.70Lsbl/_old 2021-09-28 19:16:32.844186891 +0200
+++ /var/tmp/diff_new_pack.70Lsbl/_new 2021-09-28 19:16:32.848186897 +0200
@@ -17,7 +17,7 @@
Name: yast2-nfs-client
-Version: 4.4.0
+Version: 4.4.1
Release: 0
URL: https://github.com/yast/yast-nfs-client
Summary: YaST2 - NFS Configuration
++++++ yast2-nfs-client-4.4.0.tar.bz2 -> yast2-nfs-client-4.4.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-nfs-client-4.4.0/package/yast2-nfs-client.changes
new/yast2-nfs-client-4.4.1/package/yast2-nfs-client.changes
--- old/yast2-nfs-client-4.4.0/package/yast2-nfs-client.changes 2021-04-30
18:17:35.000000000 +0200
+++ new/yast2-nfs-client-4.4.1/package/yast2-nfs-client.changes 2021-09-28
10:27:44.000000000 +0200
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Tue Jun 29 09:43:08 UTC 2021 - Josef Reidinger <[email protected]>
+
+- Support systemd mount options in fstab (bsc#1187781)
+- 4.4.1
+
+-------------------------------------------------------------------
Tue Apr 20 13:51:55 UTC 2021 - Ladislav Slez??k <[email protected]>
- 4.4.0 (bsc#1185510)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-nfs-client-4.4.0/package/yast2-nfs-client.spec
new/yast2-nfs-client-4.4.1/package/yast2-nfs-client.spec
--- old/yast2-nfs-client-4.4.0/package/yast2-nfs-client.spec 2021-04-30
18:17:35.000000000 +0200
+++ new/yast2-nfs-client-4.4.1/package/yast2-nfs-client.spec 2021-09-28
10:27:44.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-nfs-client
-Version: 4.4.0
+Version: 4.4.1
Release: 0
Url: https://github.com/yast/yast-nfs-client
Summary: YaST2 - NFS Configuration
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-nfs-client-4.4.0/src/modules/NfsOptions.rb
new/yast2-nfs-client-4.4.1/src/modules/NfsOptions.rb
--- old/yast2-nfs-client-4.4.0/src/modules/NfsOptions.rb 2021-04-30
18:17:35.000000000 +0200
+++ new/yast2-nfs-client-4.4.1/src/modules/NfsOptions.rb 2021-09-28
10:27:44.000000000 +0200
@@ -17,6 +17,8 @@
#
http://git.linux-nfs.org/?p=steved/nfs-utils.git;a=history;f=utils/mount/nfsmount.c
# - kernel: fs/nfs/super.c
#
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=history;f=fs/nfs/super.c
+ # - systemd options:
+ # https://www.freedesktop.org/software/systemd/man/systemd.mount.html
# Note that minorversion in particular is mentioned only in the kernel
# but not in nfs-utils.
@@ -70,7 +72,13 @@
"ro",
"rw",
"silent",
- "sync"
+ "sync",
+ "x-initrd.mount",
+ "x-systemd.automount",
+ "x-systemd.device-bound",
+ "x-systemd.growfs",
+ "x-systemd.makefs",
+ "x-systemd.rw-only"
].freeze
OPTIONS_WITH_VALUE = [
@@ -104,7 +112,16 @@
"sec",
"timeo",
"vers",
- "wsize"
+ "wsize",
+ "x-systemd.after",
+ "x-systemd.before",
+ "x-systemd.device-timeout",
+ "x-systemd.idle-timeout",
+ "x-systemd.mount-timeout",
+ "x-systemd.required-by",
+ "x-systemd.requires",
+ "x-systemd.requires-mounts-for",
+ "x-systemd.wanted-by"
].freeze
def main
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/yast2-nfs-client-4.4.0/test/nfs_options_test.rb
new/yast2-nfs-client-4.4.1/test/nfs_options_test.rb
--- old/yast2-nfs-client-4.4.0/test/nfs_options_test.rb 2021-04-30
18:17:35.000000000 +0200
+++ new/yast2-nfs-client-4.4.1/test/nfs_options_test.rb 2021-09-28
10:27:44.000000000 +0200
@@ -29,7 +29,9 @@
"nolock,bg",
"nolock,nobg",
"nolock,rsize=8192",
- "defaults,ro,noatime,nodiratime,users,exec"
+ "defaults,ro,noatime,nodiratime,users,exec",
+ # bsc#1187781
+
"noauto,nofail,x-systemd.automount,x-systemd.mount-timeout=10,_netdev,x-systemd.idle-timeout=5min"
].each do |options|
returned = Yast::NfsOptions.validate(options)
expect(returned).to be_empty, "options '#{options}' returned
'#{returned}'"