# HG changeset patch # User Franz Glasner # Date 1661087579 -7200 # Node ID 0136dce2db22dd3dc42ad688f0d1d3d87d33fd23 # Parent a19acddb46626c0f6f6cf85f049fae04d201100a Enhanced messages diff -r a19acddb4662 -r 0136dce2db22 sbin/fjail --- 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