mirror of
https://github.com/pivpn/pivpn.git
synced 2025-01-18 10:34:27 +00:00
Fix .ovpn12 file, make pivpn -a options discoverable
This commit is contained in:
parent
ad29af2199
commit
7071bb26dd
2 changed files with 7 additions and 3 deletions
2
pivpn
2
pivpn
|
@ -58,7 +58,6 @@ function helpFunc {
|
||||||
echo ":::"
|
echo ":::"
|
||||||
echo "::: Commands:"
|
echo "::: Commands:"
|
||||||
echo "::: -a, add [nopass] Create a client ovpn profile, optional nopass"
|
echo "::: -a, add [nopass] Create a client ovpn profile, optional nopass"
|
||||||
echo "::: -b,--bitwarden Create and save a client through Bitwarden"
|
|
||||||
echo "::: -c, clients List any connected clients to the server"
|
echo "::: -c, clients List any connected clients to the server"
|
||||||
echo "::: -d, debug Start a debugging session if having trouble"
|
echo "::: -d, debug Start a debugging session if having trouble"
|
||||||
echo "::: -l, list List all valid and revoked certificates"
|
echo "::: -l, list List all valid and revoked certificates"
|
||||||
|
@ -75,7 +74,6 @@ fi
|
||||||
# Handle redirecting to specific functions based on arguments
|
# Handle redirecting to specific functions based on arguments
|
||||||
case "$1" in
|
case "$1" in
|
||||||
"-a" | "add" ) makeOVPNFunc "$@";;
|
"-a" | "add" ) makeOVPNFunc "$@";;
|
||||||
"-b" | "bitwarden" ) makeOVPNFunc "$@";;
|
|
||||||
"-c" | "clients" ) listClientsFunc;;
|
"-c" | "clients" ) listClientsFunc;;
|
||||||
"-d" | "debug" ) debugFunc;;
|
"-d" | "debug" ) debugFunc;;
|
||||||
"-l" | "list" ) listOVPNFunc;;
|
"-l" | "list" ) listOVPNFunc;;
|
||||||
|
|
|
@ -28,6 +28,12 @@ helpFunc() {
|
||||||
echo "::: -h,--help Show this help dialog"
|
echo "::: -h,--help Show this help dialog"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [ ! -f /etc/pivpn/HELP_SHOWN ]; then
|
||||||
|
helpFunc
|
||||||
|
echo
|
||||||
|
touch /etc/pivpn/HELP_SHOWN
|
||||||
|
fi
|
||||||
|
|
||||||
# Parse input arguments
|
# Parse input arguments
|
||||||
while test $# -gt 0
|
while test $# -gt 0
|
||||||
do
|
do
|
||||||
|
@ -342,7 +348,7 @@ if [ "$iOS" = "1" ]; then
|
||||||
printf "Please remember the export password\n"
|
printf "Please remember the export password\n"
|
||||||
printf "as you will need this import the certificate on your iOS device\n"
|
printf "as you will need this import the certificate on your iOS device\n"
|
||||||
printf "========================================================\n"
|
printf "========================================================\n"
|
||||||
openssl pkcs12 -passin env:$PASSWD -export -in issued/${NAME}${CRT} -inkey private/${NAME}${KEY} -certfile ${CA} -name ${NAME} -out /home/$INSTALL_USER/ovpns/$NAME.ovpn12
|
openssl pkcs12 -passin pass:"$PASSWD" -export -in "issued/${NAME}${CRT}" -inkey "private/${NAME}${KEY}" -certfile ${CA} -name "${NAME}" -out "/home/$INSTALL_USER/ovpns/$NAME.ovpn12"
|
||||||
chown "$INSTALL_USER" "/home/$INSTALL_USER/ovpns/$NAME.ovpn12"
|
chown "$INSTALL_USER" "/home/$INSTALL_USER/ovpns/$NAME.ovpn12"
|
||||||
chmod 600 "/home/$INSTALL_USER/ovpns/$NAME.ovpn12"
|
chmod 600 "/home/$INSTALL_USER/ovpns/$NAME.ovpn12"
|
||||||
printf "========================================================\n"
|
printf "========================================================\n"
|
||||||
|
|
Loading…
Reference in a new issue