#!/bin/sh
. /boot.conf
test "$LOG_START" && echo "<*> Executing '$0 $*'"

if test "$LOCAL_ETC"; then
    test "$LOG_STAGE" && echo "* Binding /.local to per ws rw storage"
    mount -n --bind /.share/.local/.$HOSTNAME /.local \
    || echo "! mount --bind /.local failure"
fi

exit 0
