pivpn/pivpn

88 lines
2.2 KiB
Text
Raw Normal View History

2016-04-19 18:01:55 +00:00
#!/bin/bash
# Must be root to use this tool
if [[ ! $EUID -eq 0 ]];then
if [[ $(dpkg-query -s sudo) ]];then
export SUDO="sudo"
else
echo "::: Please install sudo or run this as root."
exit 1
fi
fi
function makeOVPNFunc {
shift
$SUDO /opt/pivpn/makeOVPN.sh "$@"
2016-04-19 18:01:55 +00:00
exit 1
}
function listClientsFunc {
$SUDO /opt/pivpn/clientStat.sh
exit 1
}
2016-04-19 18:01:55 +00:00
function listOVPNFunc {
$SUDO /opt/pivpn/listOVPN.sh
exit 1
}
function debugFunc {
2016-11-19 20:52:13 +00:00
echo "::: Generating Debug Output"
2017-01-27 22:46:34 +00:00
$SUDO /opt/pivpn/pivpnDebug.sh | tee /tmp/debug.txt
2016-11-19 20:52:13 +00:00
echo "::: "
echo "::: Debug output completed above."
echo "::: Copy saved to /tmp/debug.txt"
echo "::: "
2016-04-19 18:01:55 +00:00
exit 1
}
function removeOVPNFunc {
shift
$SUDO /opt/pivpn/removeOVPN.sh "$@"
2016-04-19 18:01:55 +00:00
exit 1
}
function uninstallFunc {
$SUDO /opt/pivpn/uninstall.sh
exit 1
}
2016-04-20 23:16:39 +00:00
function versionFunc {
2016-12-24 22:24:21 +00:00
printf "\e[1mVersion 1.9\e[0m\n"
2016-04-20 23:16:39 +00:00
}
2016-04-19 18:01:55 +00:00
function helpFunc {
echo "::: Control all PiVPN specific functions!"
echo ":::"
echo "::: Usage: pivpn <command> [option]"
2016-04-19 18:01:55 +00:00
echo ":::"
echo "::: Commands:"
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"
2016-04-19 18:01:55 +00:00
echo "::: -d, debug Start a debugging session if having trouble"
echo "::: -l, list List all valid and revoked certificates"
echo "::: -r, revoke Revoke a client ovpn profile"
echo "::: -h, help Show this help dialog"
echo "::: -u, uninstall Uninstall PiVPN from your system!"
exit 1
}
if [[ $# = 0 ]]; then
helpFunc
fi
# Handle redirecting to specific functions based on arguments
case "$1" in
"-a" | "add" ) makeOVPNFunc "$@";;
"-b" | "bitwarden" ) makeOVPNFunc "$@";;
"-c" | "clients" ) listClientsFunc;;
2016-04-19 18:01:55 +00:00
"-d" | "debug" ) debugFunc;;
"-l" | "list" ) listOVPNFunc;;
"-r" | "revoke" ) removeOVPNFunc "$@";;
2016-04-19 18:01:55 +00:00
"-h" | "help" ) helpFunc;;
"-u" | "uninstall" ) uninstallFunc;;
2016-04-20 23:16:39 +00:00
"-v" ) versionFunc;;
2016-04-19 18:01:55 +00:00
* ) helpFunc;;
esac