Compare commits

..

3 Commits

Author SHA1 Message Date
Luke Hoggatt 1672c7fc0e
Allow Updating WGDashboard (#2866) 2024-04-26 17:28:52 -04:00
tteckster ccc91c0337
Update nginxproxymanager-install.sh
tweak
2024-04-26 16:53:52 -04:00
tteckster 95b7607d4e
Update nginxproxymanager-install.sh
Add certbot-dns-multi 4.16.1
2024-04-26 16:36:39 -04:00
2 changed files with 7 additions and 5 deletions

View File

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

View File

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