From 105637192f6dff8921bf12a288f15c477ee52830 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Sat, 31 Aug 2019 20:27:10 -0400 Subject: [PATCH] Mute replay warnings enabled by default, fixes #34 --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 7992998a..c140a639 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -263,8 +263,8 @@ if [ "$NONROOT" = "yes" ]; then echo "user nonrootuser" >> "$TARGET_PATH/config.ovpn" exitOnError $? "Cannot add 'user nonrootuser' to $TARGET_PATH/config.ovpn" fi -echo "mssfix 1300" >> "$TARGET_PATH/config.ovpn" -exitOnError $? "Cannot add 'mssfix 1300' to $TARGET_PATH/config.ovpn" +echo "mute-replay-warnings" >> "$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 printf "DONE\n"