netifd: add missing do_sysctl function
authorFelix Fietkau <nbd@openwrt.org>
Mon, 27 Feb 2012 23:37:46 +0000 (23:37 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 27 Feb 2012 23:37:46 +0000 (23:37 +0000)
SVN-Revision: 30749

package/netifd/files/lib/network/config.sh

index ab3efe8c005c99e5c522cedc7d0141a7f72369a1..129cb66622f37447e6d30d2b707351b884bab4b8 100755 (executable)
@@ -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"
+}