Mercurial > hgrepos > FreeBSD > ports > sysutils > local-bsdtools
changeset 208:0136dce2db22
Enhanced messages
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sun, 21 Aug 2022 15:12:59 +0200 |
| parents | a19acddb4662 |
| children | 1b176ccd41b9 |
| files | sbin/fjail |
| diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/sbin/fjail Sun Aug 21 15:10:09 2022 +0200 +++ b/sbin/fjail Sun Aug 21 15:12:59 2022 +0200 @@ -457,13 +457,13 @@ *) if [ "${_mount_outside}" = "yes" ]; then if [ "${_dry_run}" = "yes" ]; then - echo "Would mount ${_name} on configured dataset mountpoint ${_mp}" + echo "Would mount ${_name} on configured ZFS dataset mountpoint ${_mp}" else - echo "Mounting ${_name} on configured dataset mountpoint ${_mp}" + echo "Mounting ${_name} on configured ZFS dataset mountpoint ${_mp}" zfs mount "${_name}" || return 1 fi else - echo "Skipping ${_name} because its configured mountpoint is not relative to given root dataset" 2>&1 + echo "Skipping ${_name} because its configured ZFS mountpoint is not relative to given root dataset" 2>&1 fi ;; esac
