summaryrefslogtreecommitdiff
path: root/etc/rc.d/rc.local
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2026-02-16 03:14:39 +0100
committernavewindre <boneyaard@gmail.com>2026-02-16 03:14:39 +0100
commit8920ff4dc02bb03986e89998ab6870e9a8fff4c0 (patch)
tree79d700a2fd9288e29afd35f3d624b9f24848f8ff /etc/rc.d/rc.local
parent63321658035a6ad9f16ee80f27655d82316702ff (diff)
a
Diffstat (limited to 'etc/rc.d/rc.local')
-rwxr-xr-xetc/rc.d/rc.local26
1 files changed, 26 insertions, 0 deletions
diff --git a/etc/rc.d/rc.local b/etc/rc.d/rc.local
new file mode 100755
index 0000000..3d70d18
--- /dev/null
+++ b/etc/rc.d/rc.local
@@ -0,0 +1,26 @@
+#!/bin/bash
+#
+# /etc/rc.d/rc.local: Local system initialization script.
+#
+# Put any local startup commands in here. Also, if you have
+# anything that needs to be run at shutdown time you can
+# make an /etc/rc.d/rc.local_shutdown script and put those
+# commands in there.
+
+if [[ -x /etc/rc.d/rc.libvirt ]]; then
+ /etc/rc.d/rc.libvirt start
+fi
+
+if [[ -x /lib/ufw/ufw-init ]]; then
+ echo "starting ufw..."
+ /lib/ufw/ufw-init start
+fi
+
+echo "loading uhid..."
+modprobe uhid
+echo "loading ntsync module..."
+modprobe ntsync
+
+if [[ -x /etc/rc.d/rc.splash ]]; then
+ /etc/rc.d/rc.splash
+fi