Mute replay warnings enabled by default, fixes #34

This commit is contained in:
Quentin McGaw
2019-08-31 20:27:10 -04:00
parent 9eac515f31
commit 105637192f

View File

@@ -263,8 +263,8 @@ if [ "$NONROOT" = "yes" ]; then
echo "user nonrootuser" >> "$TARGET_PATH/config.ovpn" echo "user nonrootuser" >> "$TARGET_PATH/config.ovpn"
exitOnError $? "Cannot add 'user nonrootuser' to $TARGET_PATH/config.ovpn" exitOnError $? "Cannot add 'user nonrootuser' to $TARGET_PATH/config.ovpn"
fi fi
echo "mssfix 1300" >> "$TARGET_PATH/config.ovpn" echo "mute-replay-warnings" >> "$TARGET_PATH/config.ovpn"
exitOnError $? "Cannot add 'mssfix 1300' to $TARGET_PATH/config.ovpn" exitOnError $? "Cannot add 'mute-replay-warnings' to $TARGET_PATH/config.ovpn"
# Note: TUN device re-opening will restart the container due to permissions # Note: TUN device re-opening will restart the container due to permissions
printf "DONE\n" printf "DONE\n"