Date: Mon, 26 Nov 2018 13:03:34 +0000 (UTC) From: Eugene Grosbein <eugen@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r340963 - stable/11/libexec/makewhatis.local Message-ID: <201811261303.wAQD3YRp078183@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eugen Date: Mon Nov 26 13:03:34 2018 New Revision: 340963 URL: https://svnweb.freebsd.org/changeset/base/340963 Log: MFC r339817: makewhatis: do not try to operate on read-only mounted directories just to fail later. Modified: stable/11/libexec/makewhatis.local/makewhatis.local.sh Directory Properties: stable/11/ (props changed) Modified: stable/11/libexec/makewhatis.local/makewhatis.local.sh ============================================================================== --- stable/11/libexec/makewhatis.local/makewhatis.local.sh Mon Nov 26 13:01:51 2018 (r340962) +++ stable/11/libexec/makewhatis.local/makewhatis.local.sh Mon Nov 26 13:03:34 2018 (r340963) @@ -49,10 +49,10 @@ done dirs=`echo $dirs | sed 's/:/ /g'` case X"$dirs" in X) echo "usage: $0 [options] directories ..."; exit 1;; esac -localdirs=`find -H $dirs -fstype local -type d -prune -print` +localdirs=`find -H $dirs -fstype local \! -fstype rdonly -type d -prune -print` case X"$localdirs" in - X) echo "$0: no local-mounted manual directories found: $dirs" + X) echo "$0: no local rw-mounted manual directories found: $dirs" exit 1;; *) exec `basename $0 .local` $opt $localdirs;; esac
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811261303.wAQD3YRp078183>