From 30ba4bbb6910edcdf8c58e91799d2817aa316b76 Mon Sep 17 00:00:00 2001 From: Christer Edwards Date: Sat, 31 Jul 2021 14:42:24 -0600 Subject: [PATCH] revert double-slash fix this causes issues if the user doesn't provide a starting /. cosmetic only. --- usr/local/share/bastille/mount.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/mount.sh b/usr/local/share/bastille/mount.sh index 0ccacf5..298d42a 100644 --- a/usr/local/share/bastille/mount.sh +++ b/usr/local/share/bastille/mount.sh @@ -93,7 +93,7 @@ for _jail in ${JAILS}; do info "[${_jail}]:" ## aggregate variables into FSTAB entry - _jailpath="${bastille_jailsdir}/${_jail}/root${_jailpath}" + _jailpath="${bastille_jailsdir}/${_jail}/root/${_jailpath}" _fstab_entry="${_hostpath} ${_jailpath} ${_type} ${_perms} ${_checks}" ## Create mount point if it does not exist. -- cwells