Compare commits

..

No commits in common. "1672c7fc0eb6e61a51f6a93c21fedb962efafcec" and "8895888df211b0af4347248d77e3dafa31e8b3dd" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -68,11 +68,7 @@ exit
fi fi
if [ "$UPD" == "2" ]; then if [ "$UPD" == "2" ]; then
if [[ -f /etc/systemd/system/wg-dashboard.service ]]; then if [[ -f /etc/systemd/system/wg-dashboard.service ]]; then
msg_info "Updating WGDashboard" msg_error "Existing WGDashboard Installation Found!";
cd /etc/wgdashboard/src
yes "Y" | sudo ./wgd.sh update &>/dev/null
sudo chmod u+x wgd.sh
msg_ok "Updated Successfully"
exit exit
fi fi
IP=$(hostname -I | awk '{print $1}') IP=$(hostname -I | awk '{print $1}')

View File

@ -37,8 +37,10 @@ $STD apt-get install -y \
python3-pip \ python3-pip \
python3-venv \ python3-venv \
python3-cffi \ python3-cffi \
python3-certbot python3-certbot \
$STD pip3 install certbot-dns-multi python3-certbot-dns-cloudflare
$STD pip3 install certbot_dns_porkbun
$STD pip3 install certbot-dns-duckdns
$STD python3 -m venv /opt/certbot/ $STD python3 -m venv /opt/certbot/
msg_ok "Installed Python Dependencies" msg_ok "Installed Python Dependencies"