diff options
author | Scott Ullrich <sullrich@gmail.com> | 2011-06-21 12:08:04 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@gmail.com> | 2011-06-21 12:08:15 -0400 |
commit | 490615d3bc187e108cbdc8d13f30c9dda6edfbd5 (patch) | |
tree | 10c3bb2a5b70a26b700d75fa8c1a8b663237afad /etc | |
parent | f81cbdad2989a7da6ab4725a1b249b86570a3b35 (diff) | |
download | pfsense-490615d3bc187e108cbdc8d13f30c9dda6edfbd5.zip pfsense-490615d3bc187e108cbdc8d13f30c9dda6edfbd5.tar.gz |
Add custom boot early hook
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/rc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -359,6 +359,12 @@ if [ "$PLATFORM" = "pfSense" ]; then /usr/local/bin/php -q /etc/ecl.php fi +if [ -f /etc/rc.custom_boot_early ]; then + /bin/echo -n "Launching /etc/rc.custom_boot_early..."; + /etc/rc.custom_boot_early + echo "Done" +fi + nohup /usr/bin/nice -n20 /usr/local/sbin/check_reload_status # let the PHP-based configuration subsystem set up the system now |