From 6d56251220954f4937c9fafbcdb427d4aa50d330 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Fri, 2 Aug 2019 19:39:05 +0100 Subject: mountpoint: add --nofollow option The no follow option will allow user to distinct mount points from symbolic links pointing to them. Arguably this is pretty pedantic option, mounting a device or bind mount to a directory via symlink does not have or cause any issues. Addresses: https://github.com/karelzak/util-linux/issues/832 Signed-off-by: Sami Kerola --- tests/expected/misc/mountpoint | 9 +++++++++ tests/ts/misc/mountpoint | 27 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/expected/misc/mountpoint create mode 100755 tests/ts/misc/mountpoint (limited to 'tests') diff --git a/tests/expected/misc/mountpoint b/tests/expected/misc/mountpoint new file mode 100644 index 000000000..e7c20cd25 --- /dev/null +++ b/tests/expected/misc/mountpoint @@ -0,0 +1,9 @@ +default +./symlink-to-root is a mountpoint +0 +try --nofollow +./symlink-to-root is not a mountpoint +1 +mutually exclusive +mountpoint: --devno and --nofollow are mutually exclusive +1 diff --git a/tests/ts/misc/mountpoint b/tests/ts/misc/mountpoint new file mode 100755 index 000000000..0b93a9c36 --- /dev/null +++ b/tests/ts/misc/mountpoint @@ -0,0 +1,27 @@ +#!/bin/bash + +TS_TOPDIR="${0%/*}/../.." +TS_DESC="mountpoint" + +. $TS_TOPDIR/functions.sh +ts_init "$*" + +ts_check_test_command "$TS_CMD_MOUNTPOINT" + +ln -s / ./symlink-to-root + +echo "default" >> $TS_OUTPUT 2>&1 +$TS_CMD_MOUNTPOINT ./symlink-to-root >> $TS_OUTPUT 2>&1 +echo $? >> $TS_OUTPUT 2>&1 + +echo "try --nofollow" >> $TS_OUTPUT 2>&1 +$TS_CMD_MOUNTPOINT --nofollow ./symlink-to-root >> $TS_OUTPUT 2>&1 +echo $? >> $TS_OUTPUT 2>&1 + +echo "mutually exclusive" >> $TS_OUTPUT 2>&1 +$TS_CMD_MOUNTPOINT --devno --nofollow / >> $TS_OUTPUT 2>&1 +echo $? >> $TS_OUTPUT 2>&1 + +rm -f ./symlink-to-root + +ts_finalize -- cgit v1.2.3-55-g7522