mirror of
https://github.com/angristan/wireguard-install.git
synced 2024-10-31 18:52:31 +00:00
Update wireguard-install.sh
This commit is contained in:
parent
5e89619f47
commit
0d40ac2460
@ -30,36 +30,6 @@ usage ()
|
|||||||
echo "-h: Show help"
|
echo "-h: Show help"
|
||||||
}
|
}
|
||||||
|
|
||||||
parse_args ()
|
|
||||||
{
|
|
||||||
while [ $# -ne 0 ]
|
|
||||||
do
|
|
||||||
case "${1}" in
|
|
||||||
-install)
|
|
||||||
shift
|
|
||||||
arg_install_wg >&2
|
|
||||||
;;
|
|
||||||
-remove)
|
|
||||||
shift
|
|
||||||
remove_wg >&2
|
|
||||||
;;
|
|
||||||
-h|--help)
|
|
||||||
usage
|
|
||||||
exit 0
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Invalid argument : ${1}" >&2
|
|
||||||
usage >&2
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
shift
|
|
||||||
done
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
parse_args "$@"
|
|
||||||
|
|
||||||
detect_bad(){
|
detect_bad(){
|
||||||
if [ "$(systemd-detect-virt)" == "openvz" ]; then
|
if [ "$(systemd-detect-virt)" == "openvz" ]; then
|
||||||
echo "OpenVZ is not supported"
|
echo "OpenVZ is not supported"
|
||||||
@ -274,3 +244,33 @@ options
|
|||||||
install_wg
|
install_wg
|
||||||
configure_wg
|
configure_wg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parse_args ()
|
||||||
|
{
|
||||||
|
while [ $# -ne 0 ]
|
||||||
|
do
|
||||||
|
case "${1}" in
|
||||||
|
-install)
|
||||||
|
shift
|
||||||
|
arg_install_wg >&2
|
||||||
|
;;
|
||||||
|
-remove)
|
||||||
|
shift
|
||||||
|
remove_wg >&2
|
||||||
|
;;
|
||||||
|
-h|--help)
|
||||||
|
usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Invalid argument : ${1}" >&2
|
||||||
|
usage >&2
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
parse_args "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user