5aba4a2d55
Fix regression due to unnecessary "error" messages from nfs.conf - 0002-Let-systemd-know-when-rpc.statd-is-needed.patch 0003-systemd-run-statd-notify-even-when-nfs-client-isn-t-.patch Fixes for systemd integration (bsc#1116221) OBS-URL: https://build.opensuse.org/package/show/Base:System/nfs-utils?expand=0&rev=197
20 lines
652 B
Diff
20 lines
652 B
Diff
support/export/export.c | 2
|
|
support/include/misc.h | 3
|
|
support/include/nfslib.h | 1
|
|
================================================================================
|
|
---
|
|
support/nfs/exports.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/support/nfs/exports.c
|
|
+++ b/support/nfs/exports.c
|
|
@@ -658,6 +658,8 @@ bad_option:
|
|
} else if (strncmp(opt, "replicas=", 9) == 0) {
|
|
ep->e_fslocmethod = FSLOC_REPLICA;
|
|
ep->e_fslocdata = strdup(opt+9);
|
|
+ } else if (strncmp(opt, "bind=/", 6) == 0) {
|
|
+ /* ignore this for now */
|
|
} else if (strncmp(opt, "sec=", 4) == 0) {
|
|
active = parse_flavors(opt+4, ep);
|
|
if (!active)
|