I'm adding a new transient service which needs to run once on boot. It starts a script which runs from /usr/sbin, reads data from /usr, and reads/writes to /var and /tmp. I have a couple of questions regarding dependency specification and enabling of the service on boot:
1. Is it sufficient to just specify svc:/system/filesystem/minimal as a dependency since "minimal" requires svc:/system/filesystem/usr and "usr" requires svc:/system/filesystem/root? 2. The service will be disabled by default, however, since I want to make sure it runs on boot, do I need to set <instance name='default' enabled='true'> in the generic_open and generic_limited_net profiles? Cindy