acca7eadc4
SVN-Revision: 36129
7 lines
177 B
Bash
7 lines
177 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /etc/sysctl.conf ] && [ "$ACTION" = add ]; then
|
|
sed -ne "/^[[:space:]]*net\..*\.$DEVICENAME\./p" /etc/sysctl.conf | \
|
|
sysctl -e -p - | logger -t sysctl
|
|
fi
|