diff options
Diffstat (limited to 'sh.BSD')
-rw-r--r-- | sh.BSD/init.sh.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sh.BSD/init.sh.in b/sh.BSD/init.sh.in index 8d08b0c4..dbff7368 100644 --- a/sh.BSD/init.sh.in +++ b/sh.BSD/init.sh.in @@ -22,10 +22,12 @@ mount_svcdir() cp -p "${RC_SVCDIR}"/deptree "${RC_SVCDIR}"/depconfig \ "${RC_SVCDIR}"/nettree "${RC_LIBDIR}"/tmp 2>/dev/null fi - if ! mount -t tmpfs -o rw,noexec,nosuid none "${RC_SVCDIR}" 2>/dev/null; then - mdconfig -a -t malloc -s "${rc_svcsize:-1024}"k -u 0 - newfs -b 4096 -i 1024 -n /dev/md0 - mount -o rw,noexec,nosuid /dev/md0 "${RC_SVCDIR}" + if ! fstabinfo --mount "${RC_SVCDIR}"; then + if ! mount -t tmpfs -o rw,noexec,nosuid none "${RC_SVCDIR}" 2>/dev/null; then + mdconfig -a -t malloc -s "${rc_svcsize:-1024}"k -u 0 + newfs -b 4096 -i 1024 -n /dev/md0 + mount -o rw,noexec,nosuid /dev/md0 "${RC_SVCDIR}" + fi fi retval=$? if ${dotmp}; then |