pivpn/scripts/wireguard/pivpn.sh

163 lines
3.2 KiB
Bash
Raw Normal View History

2019-10-14 10:27:28 +00:00
#!/bin/bash
2022-07-26 13:20:35 +00:00
CHECK_PKG_INSTALLED='dpkg-query -s'
if grep -qsEe "^NAME\=['\"]?Alpine[a-zA-Z ]*['\"]?$" /etc/os-release; then
2022-07-27 12:53:36 +00:00
CHECK_PKG_INSTALLED='apk --no-cache info -e'
2022-07-26 13:20:35 +00:00
fi
2019-10-14 10:27:28 +00:00
# Must be root to use this tool
2022-07-27 12:53:36 +00:00
if [[ "${EUID}" -ne 0 ]]; then
if ${CHECK_PKG_INSTALLED} sudo &> /dev/null; then
export SUDO="sudo"
else
err "::: Please install sudo or run this as root."
exit 1
2019-10-14 10:27:28 +00:00
fi
fi
2020-04-28 22:44:56 +00:00
scriptdir="/opt/pivpn"
vpn="wireguard"
2022-07-27 12:53:36 +00:00
err() {
echo "[$(date +'%Y-%m-%dT%H:%M:%S%z')]: $*" >&2
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
makeConf() {
shift
${SUDO} "${scriptdir}/${vpn}/makeCONF.sh" "$@"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
listConnected() {
shift
${SUDO} "${scriptdir}/${vpn}/clientSTAT.sh" "$@"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
debug() {
echo "::: Generating Debug Output"
${SUDO} "${scriptdir}/${vpn}/pivpnDEBUG.sh" | tee /tmp/debug.log
echo "::: "
echo "::: Debug output completed above."
echo "::: Copy saved to /tmp/debug.log"
echo "::: "
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
listClients() {
${SUDO} "${scriptdir}/${vpn}/listCONF.sh"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
showQrcode() {
shift
${SUDO} "${scriptdir}/${vpn}/qrcodeCONF.sh" "$@"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
removeClient() {
shift
${SUDO} "${scriptdir}/${vpn}/removeCONF.sh" "$@"
exit "${?}"
2020-10-21 21:35:29 +00:00
}
2022-07-27 12:53:36 +00:00
disableClient() {
shift
${SUDO} "${scriptdir}/${vpn}/disableCONF.sh" "$@"
exit "${?}"
2020-10-21 21:35:29 +00:00
}
2022-07-27 12:53:36 +00:00
enableClient() {
shift
${SUDO} "${scriptdir}/${vpn}/enableCONF.sh" "$@"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
uninstallServer() {
${SUDO} "${scriptdir}/uninstall.sh" "${vpn}"
exit "${?}"
2019-12-30 10:44:33 +00:00
}
2022-07-27 12:53:36 +00:00
updateScripts() {
shift
${SUDO} "${scriptdir}/update.sh" "$@"
exit "${?}"
}
2022-07-27 12:53:36 +00:00
backup() {
${SUDO} "${scriptdir}/backup.sh" "${vpn}"
exit "${?}"
2019-10-14 10:27:28 +00:00
}
2022-07-27 12:53:36 +00:00
showHelp() {
echo "::: Control all PiVPN specific functions!"
echo ":::"
echo "::: Usage: pivpn <command> [option]"
echo ":::"
echo "::: Commands:"
echo "::: -a, add Create a client conf profile"
echo "::: -c, clients List any connected clients to the server"
echo "::: -d, debug Start a debugging session if having trouble"
echo "::: -l, list List all clients"
echo -n "::: -qr, qrcode Show the qrcode of a client for use "
echo "with the mobile app"
echo "::: -r, remove Remove a client"
echo "::: -off, off Disable a client"
echo "::: -on, on Enable a client"
echo "::: -h, help Show this help dialog"
echo "::: -u, uninstall Uninstall pivpn from your system!"
echo "::: -up, update Updates PiVPN Scripts"
echo "::: -bk, backup Backup VPN configs and user profiles"
exit 0
}
if [[ "$#" == 0 ]]; then
showHelp
2019-10-14 10:27:28 +00:00
fi
# Handle redirecting to specific functions based on arguments
2022-07-27 12:53:36 +00:00
case "${1}" in
"-a" | "add")
makeConf "$@"
;;
"-c" | "clients")
listConnected "$@"
;;
"-d" | "debug")
debug
;;
"-l" | "list")
listClients
;;
"-qr" | "qrcode")
showQrcode "$@"
;;
"-r" | "remove")
removeClient "$@"
;;
"-off" | "off")
disableClient "$@"
;;
"-on" | "on")
enableClient "$@"
;;
"-h" | "help")
showHelp
;;
"-u" | "uninstall")
uninstallServer
;;
"-up" | "update")
updateScripts "$@"
;;
"-bk" | "backup")
backup
;;
*)
showHelp
;;
2019-10-14 10:27:28 +00:00
esac