From: Felix Fietkau Date: Mon, 27 Feb 2012 23:37:46 +0000 (+0000) Subject: netifd: add missing do_sysctl function X-Git-Tag: reboot~14708 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=4814eb5df9451f7186ace1c1803ebe1133998297;p=openwrt%2Fstaging%2Fchunkeey.git netifd: add missing do_sysctl function SVN-Revision: 30749 --- diff --git a/package/netifd/files/lib/network/config.sh b/package/netifd/files/lib/network/config.sh index ab3efe8c00..129cb66622 100755 --- a/package/netifd/files/lib/network/config.sh +++ b/package/netifd/files/lib/network/config.sh @@ -57,3 +57,8 @@ setup_interface() { ubus call network.interface."$config" add_device "{ \"name\": \"$iface\" }" } +do_sysctl() { + [ -n "$2" ] && \ + sysctl -n -e -w "$1=$2" >/dev/null || \ + sysctl -n -e "$1" +}