summaryrefslogtreecommitdiff
path: root/root_scripts/boot_config.sh
diff options
context:
space:
mode:
Diffstat (limited to 'root_scripts/boot_config.sh')
-rwxr-xr-xroot_scripts/boot_config.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/root_scripts/boot_config.sh b/root_scripts/boot_config.sh
deleted file mode 100755
index 4347ae8..0000000
--- a/root_scripts/boot_config.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-# Craig Jennings <c@cjennings.net>
-# speeds and tidies the boot sequence
-
-# ensure root
-if ! [ $(id -u) -eq 0 ]
-then
- echo "Must run as root. Exiting."
- exit
-fi
-
-# disable devil icon in boot menu
-sysrc -f /boot/loader.conf loader_logo="none"
-
-# hide kernel diagnostics
-sysrc -f /boot/loader.conf boot_mute="YES"
-
-# reduce default wait time before boot
-sysrc -f /boot/loader.conf autoboot_delay=2
-
-# don't print start messages
-sysrc rc_startmsgs=NO
-
-# create console.log with the proper permissions
-touch /var/log/console.log
-chmod 600 /var/log/console.log
-
-# move from printing errors to the console to printing them to the above console.log file
-sed -i '' 's#/dev/console#/var/log/console.log#' /etc/syslog.conf