mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
acca7eadc4
SVN-Revision: 36129
7 lines
177 B
Bash
7 lines
177 B
Bash
#!/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
|