mirror of
https://github.com/riptidewave93/UNVR-NAS.git
synced 2025-02-15 03:51:54 +00:00
* Ensure we have all the right targets for ulcmd-shutdown-hook to show the shutdown message * Move to an init script that we can use for setup commands, like adjusting our kernel panic timeout.
7 lines
164 B
Bash
Executable file
7 lines
164 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Load our kernel modules
|
|
/usr/sbin/modprobe ubnthal
|
|
|
|
# Set our kernel panic timeout SUPER short so we reboot on crash
|
|
echo 2 > /proc/sys/kernel/panic
|