# HG changeset patch # User Franz Glasner # Date 1669840276 -3600 # Node ID 2623f7e775e33f303f09e933b63fbc7da7d73c82 # Parent 184412e2543ee46a060dda833c64bdda8cae3caa FIX: Shell variable expansion was not done in fjail's command configure sometimes diff -r 184412e2543e -r 2623f7e775e3 sbin/fjail --- a/sbin/fjail Wed Nov 30 09:46:29 2022 +0100 +++ b/sbin/fjail Wed Nov 30 21:31:16 2022 +0100 @@ -397,7 +397,7 @@ fi if [ "${_opt_devfs}" = "yes" ]; then - if [ ! -c "{_mp}/dev/null" ]; then + if [ ! -c "${_mp}/dev/null" ]; then echo "Mounting devfs" mount -t devfs devfs "${_mp}/dev" _umount_devfs="yes" @@ -468,7 +468,7 @@ if [ "${_umount_devfs}" = "yes" ]; then echo "Unmounting devfs" - umount "{_mp}/dev" + umount "${_mp}/dev" fi }