Update start.sh

This commit is contained in:
MarkusMcNugen 2018-04-25 23:37:48 -04:00 committed by GitHub
parent 8094973f68
commit f142f53344
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -56,9 +56,9 @@ if [[ $VPN_ENABLED == "yes" ]]; then
if [[ ! -z "${auth_cred_exist}" ]]; then
# Get line number of auth-user-pass
LINE_NUM=$(grep -Fn -m 1 'auth-user-pass' ${VPN_CONFIG} | cut -d: -f 1)
sed -i "${LINE_NUM}s/^/auth-user-pass credentials.conf\n/" ${VPN_CONFIG}
sed -i "${LINE_NUM}s/.*/auth-user-pass credentials.conf\n/" ${VPN_CONFIG}
else
sed -i "1s/^/auth-user-pass credentials.conf\n/" ${VPN_CONFIG}
sed -i "1s/.*/auth-user-pass credentials.conf\n/" ${VPN_CONFIG}
fi
fi