mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-14 11:13:29 +00:00
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$ACTION" = add ]; then
|
|
for CONF in /etc/sysctl.d/*.conf /etc/sysctl.conf; do
|
|
[ ! -f "$CONF" ] && continue;
|
|
sed -ne "/^[[:space:]]*net\..*\.$DEVICENAME\./p" "$CONF" | \
|
|
sysctl -e -p - | logger -t sysctl
|
|
done
|
|
fi
|