OpenVPN-WebAdmin
OpenVPN-WebAdmin copied to clipboard
Wrong message for log.
This line is showing the wrong log path.
https://github.com/Wutze/OpenVPN-WebAdmin/blob/43cd95f6730343591332f4506b81bdeb5b8a0c76/install.sh#L529
"[▸ You can check the progress of the installation with tail -f /opt/[ovpn-git]/loginstall.log ◂]"
When the log is in "${CURRENT_PATH}/loginstall.log"
The line should be:
message_print_out i "${INFO002} ${CURRENT_PATH}/loginstall.log"
And the INFO002 should be:
INFO002="You can check the progress of the installation with tail -f "
This is the correct message, as I cannot know the current installation path.ovpn-git] is only the placeholder for the folder into which you have cloned the Git repository.
However, I could include this idea in the future installation script and then output the correct path.
Thanks ;o)