mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 09:04:39 +00:00
We could stop on first problem but that woul likely break a number of setups that use boot early/start hooks with sloppy coding. Instead make the full run as an error and report it at the end.
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# shutdown syshook / plugin scripts
|
|
/usr/local/etc/rc.syshook stop
|
|
|
|
/sbin/shutdown -op now
|
|
|
|
while :; do sleep 1; done
|