SmartAudio/package/base-files/files/etc/init.d/sysctl

10 lines
186 B
Plaintext
Raw Normal View History

2018-07-13 01:31:50 +00:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=11
start() {
for CONF in /etc/sysctl.conf /etc/sysctl.d/*.conf; do
[ -f "$CONF" ] && sysctl -p "$CONF" -e >&-
done
}