Remove keepalive

This commit is contained in:
RealStickman 2022-06-16 19:46:03 +02:00
parent 903fffee7b
commit b9d8655794

View File

@ -29,10 +29,6 @@ for file in "${conffiles[@]}"; do
echo "Skipping $file"
else
echo "Patching $file"
# persistent keepalive
awk 'NR==9{print "PersistentKeepalive = 20"}1' "$file" > "${file}.tmp"
mv "${file}.tmp" "$file"
# NOTE route while being connected into my lan
awk 'NR==5{print "PostUp = ip route add 192.168.1.0/24 via 172.16.7.1 metric 10"}NR==5{print "PreDown = ip route del 192.168.1.0/24"}1' "$file" > "${file}.tmp"
mv "${file}.tmp" "$file"