diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-03-25 18:43:30 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-03-25 18:43:30 +0000 |
commit | acca7eadc4db7d60971655b80e9208437e046bfb (patch) | |
tree | f8b6393ab2bf49111d18b157669ebfea496cbd7b /package/base-files/files/etc/hotplug.d/net | |
parent | b92e7500276a851f091de6e2c953056c9d45d987 (diff) | |
download | upstream-acca7eadc4db7d60971655b80e9208437e046bfb.tar.gz upstream-acca7eadc4db7d60971655b80e9208437e046bfb.tar.bz2 upstream-acca7eadc4db7d60971655b80e9208437e046bfb.zip |
package/base-files: change sysctl handling Move /etc/init.d/sysctl to index 00 and add hotplug script that applies interface specific sysctls for interfaces that only appear later - this allows to reliably configure per-interface parameters in sysctl.conf, e.g. to disable ipv6 autoconfig on a specific iface.
SVN-Revision: 36129
Diffstat (limited to 'package/base-files/files/etc/hotplug.d/net')
-rw-r--r-- | package/base-files/files/etc/hotplug.d/net/00-sysctl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/base-files/files/etc/hotplug.d/net/00-sysctl b/package/base-files/files/etc/hotplug.d/net/00-sysctl new file mode 100644 index 0000000000..5d9da8ac06 --- /dev/null +++ b/package/base-files/files/etc/hotplug.d/net/00-sysctl @@ -0,0 +1,6 @@ +#!/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 +fi |