Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/95537511399b2179af48e93f5ac610dac7cc5485?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
6 deletions
@ -78,6 +78,15 @@ apt-get -y install podman &>/dev/null
systemctl enable --now podman.socket & >/dev/null
msg_ok "Installed Podman"
read -r -p "Would you like to add Yacht (Semifunctional)? <y/N> " prompt
if [ [ $prompt = = "y" || $prompt = = "Y" || $prompt = = "yes" || $prompt = = "Yes" ] ]
then
YACHT = "Y"
else
YACHT = "N"
fi
if [ [ $YACHT = = "Y" ] ] ; then
msg_info "Pulling Yacht Image"
podman pull docker.io/selfhostedpro/yacht:latest & >/dev/null
msg_ok "Pulled Yacht Image"
@ -94,8 +103,12 @@ podman run -d \
-v /etc/timezone:/etc/timezone:ro \
-p 8000:8000 \
selfhostedpro/yacht:latest & >/dev/null
podman generate systemd \
--new --name yacht \
> /etc/systemd/system/yacht.service
systemctl enable yacht & >/dev/null
msg_ok "Installed Yacht"
fi
msg_info "Pulling Home Assistant Image"
podman pull docker.io/homeassistant/home-assistant:stable & >/dev/null
msg_ok "Pulled Home Assistant Image"
@ -137,11 +150,6 @@ podman generate systemd \
> /etc/systemd/system/homeassistant.service
systemctl enable homeassistant & >/dev/null
podman generate systemd \
--new --name yacht \
> /etc/systemd/system/yacht.service
systemctl enable yacht & >/dev/null
msg_info "Cleaning up"
apt-get autoremove >/dev/null
apt-get autoclean >/dev/null