Files
ProxmoxVE/ct/wireguard.sh
T

72 lines
1.5 KiB
Bash
Raw Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
2024-01-01 12:13:05 -05:00
# Copyright (c) 2021-2024 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
2023-03-22 20:48:20 -04:00
function header_info {
clear
cat <<"EOF"
_ ___ ______ __
| | / (_)_______ / ____/_ ______ __________/ /
| | /| / / / ___/ _ \/ / __/ / / / __ `/ ___/ __ /
| |/ |/ / / / / __/ /_/ / /_/ / /_/ / / / /_/ /
|__/|__/_/_/ \___/\____/\__,_/\__,_/_/ \__,_/
EOF
}
header_info
echo -e "Loading..."
APP="Wireguard"
2024-08-21 16:10:49 -04:00
var_disk="4"
2023-03-22 20:48:20 -04:00
var_cpu="1"
var_ram="512"
var_os="debian"
2024-08-21 16:10:49 -04:00
var_version="12"
2023-03-22 20:48:20 -04:00
variables
color
catch_errors
function default_settings() {
CT_TYPE="1"
PW=""
CT_ID=$NEXTID
HN=$NSAPP
DISK_SIZE="$var_disk"
CORE_COUNT="$var_cpu"
RAM_SIZE="$var_ram"
BRG="vmbr0"
2023-05-13 21:22:09 -04:00
NET="dhcp"
2023-03-22 20:48:20 -04:00
GATE=""
2024-01-12 15:00:42 -05:00
APT_CACHER=""
APT_CACHER_IP=""
2023-03-22 20:48:20 -04:00
DISABLEIP6="no"
MTU=""
SD=""
NS=""
MAC=""
VLAN=""
SSH="no"
VERB="no"
echo_default
}
function update_script() {
2024-08-21 16:10:49 -04:00
if [[ ! -d /etc/wireguard ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
2024-09-16 03:14:42 -04:00
apt-get update
apt-get -y upgrade
sleep 2
cd /etc/wgdashboard/src
./wgd.sh update
2023-03-22 20:48:20 -04:00
exit
}
start
build_container
description
msg_ok "Completed Successfully!\n"
2024-08-21 16:10:49 -04:00
echo -e "WGDashboard should be reachable by going to the following URL.
${BL}http://${IP}:10086${CL} admin|admin \n"