mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-13 19:11:51 +00:00
6 lines
207 B
Text
6 lines
207 B
Text
|
#!/bin/sh
|
||
|
|
||
|
# Remove settings defined in /etc/sysctl.conf that are already defined in /etc/sysctl.d/
|
||
|
sed -i -e '/tcp_fin_timeout/d' -e '/tcp_keepalive_time/d' -e '/nf_conntrack_max/d' /etc/sysctl.conf
|
||
|
exit 0
|