When I setup jails, I have traditionally always used:
Then
What am I actually accomplishing with 'booting' (if you would call it that) a full FreeBSD system? I know you can use anything for
Code:
exec.start = "/bin/sh /etc/rc";
exec.stop = "/bin/sh /etc/rc.shutdown";
Then
service jail start ..., setup an rc service for my app/daemon, and service start it.What am I actually accomplishing with 'booting' (if you would call it that) a full FreeBSD system? I know you can use anything for
exec.start. Lets say if I just point it to a python app/daemon (/usr/local/bin/myapp.py) instead of /etc/rc. Would I be missing out on anything?