Files
ProxmoxVE/ct/wireguard.sh
T

56 lines
1.4 KiB
Bash
Raw Permalink Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://www.wireguard.com/
2023-03-22 20:48:20 -04:00
APP="Wireguard"
var_tags="${var_tags:-network;vpn}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-4}"
var_os="${var_os:-debian}"
var_version="${var_version:-12}"
var_unprivileged="${var_unprivileged:-1}"
2025-08-05 00:31:07 +02:00
var_tun="${var_tun:-1}"
header_info "$APP"
2023-03-22 20:48:20 -04:00
variables
color
catch_errors
function update_script() {
2025-08-05 00:31:07 +02:00
header_info
check_container_storage
check_container_resources
if [[ ! -d /etc/wireguard ]]; then
msg_error "No ${APP} Installation Found!"
exit
2025-08-05 00:31:07 +02:00
fi
if ! dpkg -s git >/dev/null 2>&1; then
msg_info "Installing git"
$STD apt-get update
$STD apt-get install -y git
msg_ok "Installed git"
fi
2025-08-05 00:31:07 +02:00
apt-get update
apt-get -y upgrade
2025-08-16 22:39:38 +02:00
if [[ -d /etc/wgdashboard ]]; then
2025-08-14 22:51:31 +02:00
sleep 2
cd /etc/wgdashboard/src
./wgd.sh update
./wgd.sh start
fi
2025-08-05 00:31:07 +02:00
exit
2023-03-22 20:48:20 -04:00
}
start
build_container
description
msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
2025-08-14 22:51:31 +02:00
echo -e "${INFO}${YW}Access WGDashboard (if installed) using the following URL:${CL}"
2025-08-05 00:31:07 +02:00
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:10086${CL}"