Fix autofs handling of filesystem labels containing plus signs and slashes.

MFC after:	1 month
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Edward Tomasz Napierala 2016-03-14 17:45:39 +00:00
parent faf139cc5d
commit 0cae9d3d4a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296866

View File

@ -19,6 +19,9 @@ print_available() {
_fstype="${_fstype_and_label%% *}"
if [ "${_fstype}" != "${_fstype_and_label}" ]; then
_label="${_fstype_and_label#* }"
# Replace plus signs and slashes with minuses;
# leading plus signs have special meaning in maps,
_label="$(echo ${_label} | sed 's,[+/],-,g')"
echo "${_label}"
continue
fi
@ -54,6 +57,10 @@ print_one() {
fi
_label="${_fstype_and_label#* }"
# Replace plus signs and slashes with minuses;
# leading plus signs have special meaning in maps,
# and multi-component keys are just not supported.
_label="$(echo ${_label} | sed 's,[+/],-,g')"
if [ "${_label}" != "${_key}" ]; then
# Labels don't match, try another device.
continue