https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205873
--- Comment #1 from Sheda <sh...@fsfe.org> --- I forgot to show the prestart script: $ cat /jail/etc/prestart #!/bin/sh set -eux jname="$1" cd /jail for e in $(cd /jail/root; find . -maxdepth 1 -type d ! -name '.' ! -name 'dev' | sed 's_^./__1'); do mount -t unionfs -o below "/jail/root/$e" "$jname/$e" done The intent is to use a template to populate the jail but excluding the dev/ directory. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"