1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Update msgs

This commit is contained in:
billz 2019-11-16 09:15:39 +00:00
parent a15ed37adc
commit b412587249

View File

@ -1,15 +1,15 @@
#!/bin/bash
# Updates openvpn client.conf with auth credentials
echo "Enabling auth-user-pass in OpenVPN client.conf..."
echo "Enabling auth credentials in OpenVPN client.conf"
line='auth-user-pass'
file='/tmp/ovpnclient.ovpn'
if grep -q "$line" $file; then
echo "Updating line: $line"
echo "Updating $line"
sudo sed -i "s/$line/$line login.conf/g" $file
else
echo "Adding line: $line"
echo "Adding $line"
sudo sed -i "$ a $line login.conf" $file
fi