You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
218 B
Bash

#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=11
start() {
[ -f /etc/sysctl.conf ] && sysctl -p -e >&-
[ -d /etc/sysctl.d ] && \
for i in /etc/sysctl.d/*.conf; do
sysctl -e -p $i >&-
done
}