Skip to content

Commit

Permalink
fix: SURFSHARK_CONFIGS_ENDPOINT
Browse files Browse the repository at this point in the history
  • Loading branch information
ilteoood committed Jun 11, 2024
1 parent 839a408 commit 441c2ca
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions startup.sh
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
#!/bin/sh
rm -rf ovpn_configs*
if [ -z "${OVPN_CONFIGS}" ]; then
wget -O ovpn_configs.zip ${SURFSHARK_CONFIGS_ENDPOINT}
OVPN_CONFIGS=ovpn_configs.zip
wget -O ${OVPN_CONFIGS} "${SURFSHARK_CONFIGS_ENDPOINT}"
fi
unzip "${OVPN_CONFIGS}" -d ovpn_configs
cd ovpn_configs
VPN_FILE=$(ls *"${SURFSHARK_COUNTRY}"-* | grep "${SURFSHARK_CITY}" | grep "${CONNECTION_TYPE}" | shuf | head -n 1)
echo Chose: "${VPN_FILE}"
echo Chose: ${VPN_FILE}
printf "${SURFSHARK_USER}\n${SURFSHARK_PASSWORD}" > vpn-auth.txt

if [ -n "${LAN_NETWORK}" ]
if [ -n ${LAN_NETWORK} ]
then
DEFAULT_GATEWAY=$(ip -4 route list 0/0 | cut -d ' ' -f 3)

splitSubnets=$(echo "${LAN_NETWORK}" | tr "," "\n")
splitSubnets=$(echo ${LAN_NETWORK} | tr "," "\n")

for subnet in $splitSubnets
do
Expand Down Expand Up @@ -46,7 +46,7 @@ if [ "${ENABLE_SOCKS_SERVER}" = "true" ]; then
OPTIONAL_SOCKS_SCRIPT="--up /vpn/sockd.sh"
fi

openvpn --config "$VPN_FILE" --auth-user-pass vpn-auth.txt --mute-replay-warnings "$OPENVPN_OPTS" --script-security 2 "${OPTIONAL_SOCKS_SCRIPT}"
openvpn --config $VPN_FILE --auth-user-pass vpn-auth.txt --mute-replay-warnings $OPENVPN_OPTS --script-security 2 ${OPTIONAL_SOCKS_SCRIPT}

if [ "${ENABLE_KILL_SWITCH}" = "true" ]; then
ufw reset
Expand Down

0 comments on commit 441c2ca

Please sign in to comment.