sysctl: read settings from /etc/sysctl.d/*.conf

This changes makes it possible to store custom settings
in individual files inside the directory /etc/sysctl.d/.

Signed-off-by: Stefan Tomanek <stefan.tomanek+openwrt@wertarbyte.de>

SVN-Revision: 46239
v19.07.3_mercusys_ac12_duma
John Crispin 9 years ago
parent 0e2d9769be
commit 3787c32183

@ -55,6 +55,8 @@ define Package/base-files/conffiles
/etc/config/
/etc/dropbear/
/etc/crontabs/
/etc/sysctl.d/local.conf
/etc/sysctl.d/
$(call $(TARGET)/conffiles)
endef

@ -1,6 +1,9 @@
#!/bin/sh
if [ -f /etc/sysctl.conf ] && [ "$ACTION" = add ]; then
sed -ne "/^[[:space:]]*net\..*\.$DEVICENAME\./p" /etc/sysctl.conf | \
sysctl -e -p - | logger -t sysctl
if [ "$ACTION" = add ]; then
for CONF in /etc/sysctl.conf /etc/sysctl.d/*.conf; do
[ ! -f "$CONF" ] && continue;
sed -ne "/^[[:space:]]*net\..*\.$DEVICENAME\./p" "$CONF" | \
sysctl -e -p - | logger -t sysctl
done
fi

@ -3,5 +3,7 @@
START=11
start() {
[ -f /etc/sysctl.conf ] && sysctl -p -e >&-
for CONF in /etc/sysctl.conf /etc/sysctl.d/*.conf; do
[ -f "$CONF" ] && sysctl -p "$CONF" -e >&-
done
}

@ -0,0 +1 @@
# local sysctl settings can be stored in this directory
Loading…
Cancel
Save