1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-03-09 15:40:03 +00:00

Remove some default sysctl settings

This commit is contained in:
Ycarus 2018-05-12 09:00:22 +02:00
parent 535b833527
commit 2aa70aebb5

View file

@ -0,0 +1,5 @@
#!/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