diff options
author | Sami Kerola | 2019-08-02 20:39:05 +0200 |
---|---|---|
committer | Sami Kerola | 2019-08-02 20:39:05 +0200 |
commit | 6d56251220954f4937c9fafbcdb427d4aa50d330 (patch) | |
tree | fae19fbb136d499e4a7bc1037a86c485847f5d7d /bash-completion | |
parent | dmesg: fix output hex encoding (diff) | |
download | kernel-qcow2-util-linux-6d56251220954f4937c9fafbcdb427d4aa50d330.tar.gz kernel-qcow2-util-linux-6d56251220954f4937c9fafbcdb427d4aa50d330.tar.xz kernel-qcow2-util-linux-6d56251220954f4937c9fafbcdb427d4aa50d330.zip |
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 <kerolasa@iki.fi>
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/mountpoint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash-completion/mountpoint b/bash-completion/mountpoint index f14327ce2..15c6d2314 100644 --- a/bash-completion/mountpoint +++ b/bash-completion/mountpoint @@ -11,7 +11,7 @@ _mountpoint_module() esac case $cur in -*) - OPTS="--quiet --fs-devno --devno --help --version" + OPTS="--quiet --nofollow --fs-devno --devno --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;; |