From 9fa18b2033e59b0e9422f85c496c5eedefb4602a Mon Sep 17 00:00:00 2001 From: Eivind Uggedal Date: Wed, 26 Aug 2015 08:16:10 +0000 Subject: core-services: sysctl --system fallback for busybox --- core-services/08-sysctl.sh | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'core-services') diff --git a/core-services/08-sysctl.sh b/core-services/08-sysctl.sh index 44aa4ad..10aa73a 100644 --- a/core-services/08-sysctl.sh +++ b/core-services/08-sysctl.sh @@ -1,6 +1,22 @@ # vim: set ts=4 sw=4 et: if [ -x /sbin/sysctl -o -x /bin/sysctl ]; then - msg "Loading sysctl(8) settings..." - sysctl --system + msg "Loading sysctl(8) settings...\n" + + if sysctl -V >/dev/null 2>&1; then + sysctl --system + else + # Fallback for busybox sysctl + for i in /run/sysctl.d/*.conf \ + /etc/sysctl.d/*.conf \ + /usr/local/lib/sysctl.d/*.conf \ + /usr/lib/sysctl.d/*.conf \ + /etc/sysctl.conf; do + + if [ -e "$i" ]; then + printf '* Applying %s ...\n' "$i" + sysctl -p "$i" + fi + done + fi fi -- cgit 1.4.1