aboutsummaryrefslogtreecommitdiff
path: root/arch-sysctl
diff options
context:
space:
mode:
Diffstat (limited to 'arch-sysctl')
-rwxr-xr-xarch-sysctl29
1 files changed, 29 insertions, 0 deletions
diff --git a/arch-sysctl b/arch-sysctl
new file mode 100755
index 0000000..4856df6
--- /dev/null
+++ b/arch-sysctl
@@ -0,0 +1,29 @@
+#!/bin/bash
+#
+# /usr/lib/initscripts/arch-sysctl
+#
+# Load sysctl configuration files following
+# http://0pointer.de/public/systemd-man/sysctl.d.html
+#
+
+shopt -s nullglob
+
+declare -a sysctl_d=(
+ /usr/lib/sysctl.d/*.conf
+ /etc/sysctl.d/*.conf
+ /run/sysctl.d/*.conf
+ /etc/sysctl.conf
+)
+declare -A fragments
+
+# files declared later in the sysctl_d array will override earlier
+# Example: `/etc/sysctl.d/foo.conf' supersedes `/usr/lib/sysctl.d/foo.conf'.
+for path in "${sysctl_d[@]}"; do
+ [[ -f $path ]] && fragments[${path##*/}]=$path
+done
+
+for path in "${fragments[@]}"; do
+ sysctl -q -p "$path"
+done
+
+# vim: set ts=2 sw=2 noet: