diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2012-02-27 23:37:46 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2012-02-27 23:37:46 +0000 |
| commit | 9c7f658df36a4ef618b7fa5040f18a272d26bcff (patch) | |
| tree | 4770b5df227e263a09eef195b28f0873b5014724 | |
| parent | f9a7a43e5562b8632eaeec38bea74e0352bbd4ad (diff) | |
| download | upstream-9c7f658df36a4ef618b7fa5040f18a272d26bcff.tar.gz upstream-9c7f658df36a4ef618b7fa5040f18a272d26bcff.tar.bz2 upstream-9c7f658df36a4ef618b7fa5040f18a272d26bcff.zip | |
netifd: add missing do_sysctl function
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30749 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rwxr-xr-x | package/netifd/files/lib/network/config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/netifd/files/lib/network/config.sh b/package/netifd/files/lib/network/config.sh index ab3efe8c005..129cb66622f 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" +} |
