From 5d7084c0bbe01b0c20c0be7133ba8b9c1510f25d Mon Sep 17 00:00:00 2001 From: Tobias Date: Tue, 6 Jan 2026 17:05:47 +0100 Subject: [PATCH] chore: refactor update messages --- .github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md | 2 +- .github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh | 2 +- ct/almalinux.sh | 2 +- ct/alpine-ntfy.sh | 7 ++++--- ct/alpine-valkey.sh | 3 ++- ct/alpine.sh | 2 +- ct/byparr.sh | 4 ++-- ct/centos.sh | 6 +++--- ct/debian.sh | 6 +++--- ct/deferred/alpine-homarr.sh | 2 +- ct/deferred/ampache.sh | 2 +- ct/deferred/docspell.sh | 2 +- ct/deferred/jumpserver.sh | 2 +- ct/deferred/kanba.sh | 2 +- ct/deferred/maxun.sh | 2 +- ct/deferred/netbootxyz.sh | 2 +- ct/deferred/nginxproxymanager.sh | 2 +- ct/deferred/ocis.sh | 2 +- ct/deferred/pixelfed.sh | 2 +- ct/deferred/polaris.sh | 2 +- ct/deferred/roundcubemail.sh | 2 +- ct/deferred/squirrelserversmanager.sh | 2 +- ct/devuan.sh | 6 +++--- ct/ente.sh | 6 +++--- ct/fedora.sh | 6 +++--- ct/freepbx.sh | 12 ++++++------ ct/frigate.sh | 2 +- ct/garmin-grafana.sh | 14 ++++++-------- ct/gentoo.sh | 6 +++--- ct/heimdall-dashboard.sh | 2 +- ct/hoodik.sh | 7 +++---- ct/investbrain.sh | 3 +-- ct/kutt.sh | 2 +- ct/linkwarden.sh | 2 +- ct/manyfold.sh | 9 ++------- ct/nextexplorer.sh | 2 +- ct/opencloud.sh | 2 +- ct/openeuler.sh | 7 ++++--- ct/opensuse.sh | 7 ++++--- ct/papra.sh | 7 ++++--- ct/petio.sh | 11 ++++++----- ct/piler.sh | 8 ++++---- ct/pixelfed.sh | 4 ++-- ct/plex.sh | 6 +++--- ct/plex2.sh | 6 +++--- ct/postgresus.sh | 2 +- ct/rockylinux.sh | 7 ++++--- ct/romm.sh | 6 +++--- ct/rustypaste.sh | 12 ++++++------ ct/rybbit.sh | 7 ++++--- ct/sportarr.sh | 10 +++++----- ct/transmission-openvpn.sh | 7 ++----- ct/ubuntu.sh | 7 ++++--- ct/yubal.sh | 4 ++-- docs/contribution/GUIDE.md | 2 +- docs/contribution/templates_ct/AppName.md | 2 +- docs/contribution/templates_ct/AppName.sh | 2 +- docs/ct/DETAILED_GUIDE.md | 6 +++--- tools/addon/netdata.sh | 4 ++-- vm/allstarlink-vm.sh | 2 +- vm/archlinux-vm.sh | 2 +- vm/debian-vm-test-helper.sh | 2 +- vm/debian-vm.sh | 2 +- vm/docker-vm-debug.sh | 2 +- vm/docker-vm.sh | 2 +- vm/docker-vm.sh.bak | 2 +- vm/haos-vm.sh | 2 +- vm/k3s-vm.sh | 2 +- vm/mikrotik-routeros.sh | 2 +- vm/nextcloud-vm.sh | 2 +- vm/opnsense-vm.sh | 2 +- vm/owncloud-vm.sh | 2 +- vm/pimox-haos-vm.sh | 2 +- vm/ubuntu2204-vm.sh | 2 +- vm/ubuntu2404-vm.sh | 2 +- vm/ubuntu2410-vm.sh | 2 +- vm/umbrel-os-vm.sh | 2 +- vm/unifi-os-server-vm.sh | 2 +- 78 files changed, 155 insertions(+), 158 deletions(-) diff --git a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md index 23d821e4d..8507c7c2d 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md +++ b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.md @@ -266,7 +266,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh index fbf862e9d..cf9333c4f 100644 --- a/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh +++ b/.github/CONTRIBUTOR_AND_GUIDES/ct/AppName.sh @@ -80,7 +80,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:[PORT]${CL}" diff --git a/ct/almalinux.sh b/ct/almalinux.sh index 44de61d49..58d9c00a6 100644 --- a/ct/almalinux.sh +++ b/ct/almalinux.sh @@ -37,5 +37,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/alpine-ntfy.sh b/ct/alpine-ntfy.sh index 1e39c9f24..3a36648b0 100644 --- a/ct/alpine-ntfy.sh +++ b/ct/alpine-ntfy.sh @@ -27,14 +27,15 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating ntfy LXC" $STD apk -U upgrade setcap 'cap_net_bind_service=+ep' /usr/bin/ntfy - msg_ok "Updated $APP LXC" + msg_ok "Updated ntfy LXC" msg_info "Restarting ntfy" rc-service ntfy restart msg_ok "Restarted ntfy" + msg_ok "Updated successfully!" exit } @@ -42,7 +43,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/alpine-valkey.sh b/ct/alpine-valkey.sh index 4b08a945b..2765aff7f 100644 --- a/ct/alpine-valkey.sh +++ b/ct/alpine-valkey.sh @@ -42,6 +42,7 @@ function update_script() { msg_info "Updating Valkey" apk update && apk upgrade valkey rc-service valkey restart + msg_ok "Updated Valkey" msg_ok "Updated successfully!" exit ;; @@ -67,6 +68,6 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${APP} should be reachable on port 6379. ${BL}valkey-cli -h ${IP} -p 6379${CL} \n" diff --git a/ct/alpine.sh b/ct/alpine.sh index 2f07dc38b..b843597ff 100644 --- a/ct/alpine.sh +++ b/ct/alpine.sh @@ -38,4 +38,4 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/ct/byparr.sh b/ct/byparr.sh index aab1be8a8..4831404b9 100644 --- a/ct/byparr.sh +++ b/ct/byparr.sh @@ -38,7 +38,7 @@ function update_script() { msg_info "Starting Service" systemctl start byparr msg_ok "Started Service" - msg_ok "Updated Successfully!" + msg_ok "Updated successfully!" fi exit } @@ -47,7 +47,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8191${CL}" diff --git a/ct/centos.sh b/ct/centos.sh index 9c32c8365..54dea3950 100644 --- a/ct/centos.sh +++ b/ct/centos.sh @@ -27,9 +27,9 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating CentOS LXC" $STD dnf -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated CentOS LXC" exit } @@ -37,5 +37,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/debian.sh b/ct/debian.sh index 8986ec423..88fbb5550 100644 --- a/ct/debian.sh +++ b/ct/debian.sh @@ -30,10 +30,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Debian LXC" $STD apt update $STD apt upgrade -y - msg_ok "Updated $APP LXC" + msg_ok "Updated Debian LXC" cleanup_lxc exit } @@ -42,5 +42,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/deferred/alpine-homarr.sh b/ct/deferred/alpine-homarr.sh index 28cf0ab79..785d0ebaa 100644 --- a/ct/deferred/alpine-homarr.sh +++ b/ct/deferred/alpine-homarr.sh @@ -108,7 +108,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7575${CL}" diff --git a/ct/deferred/ampache.sh b/ct/deferred/ampache.sh index 18f2bce41..068b2675a 100644 --- a/ct/deferred/ampache.sh +++ b/ct/deferred/ampache.sh @@ -42,7 +42,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}/install.php${CL}" diff --git a/ct/deferred/docspell.sh b/ct/deferred/docspell.sh index 396b88310..9c3764982 100644 --- a/ct/deferred/docspell.sh +++ b/ct/deferred/docspell.sh @@ -45,7 +45,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7880${CL}" diff --git a/ct/deferred/jumpserver.sh b/ct/deferred/jumpserver.sh index 1213a5581..4ac5edf38 100644 --- a/ct/deferred/jumpserver.sh +++ b/ct/deferred/jumpserver.sh @@ -59,7 +59,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/deferred/kanba.sh b/ct/deferred/kanba.sh index 1c765bea1..848b6a798 100644 --- a/ct/deferred/kanba.sh +++ b/ct/deferred/kanba.sh @@ -38,7 +38,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/deferred/maxun.sh b/ct/deferred/maxun.sh index 8374da056..4d39ecc5e 100644 --- a/ct/deferred/maxun.sh +++ b/ct/deferred/maxun.sh @@ -43,7 +43,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/deferred/netbootxyz.sh b/ct/deferred/netbootxyz.sh index 201073af9..2205aec37 100644 --- a/ct/deferred/netbootxyz.sh +++ b/ct/deferred/netbootxyz.sh @@ -124,6 +124,6 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${APP} should be reachable by going to the following URL. ${BL}http://${IP}:3000${CL} \n" diff --git a/ct/deferred/nginxproxymanager.sh b/ct/deferred/nginxproxymanager.sh index 0609c3e3a..6d59efe8f 100644 --- a/ct/deferred/nginxproxymanager.sh +++ b/ct/deferred/nginxproxymanager.sh @@ -154,7 +154,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:81${CL}" diff --git a/ct/deferred/ocis.sh b/ct/deferred/ocis.sh index 412edf093..b48547579 100644 --- a/ct/deferred/ocis.sh +++ b/ct/deferred/ocis.sh @@ -38,7 +38,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9200${CL}" diff --git a/ct/deferred/pixelfed.sh b/ct/deferred/pixelfed.sh index e02ff0fd9..f9f6ba2e2 100644 --- a/ct/deferred/pixelfed.sh +++ b/ct/deferred/pixelfed.sh @@ -40,6 +40,6 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${APP} Setup should be reachable by going to the following URL. ${BL}http://${IP}:8000${CL} \n" diff --git a/ct/deferred/polaris.sh b/ct/deferred/polaris.sh index 376f216f8..ab9edabd5 100644 --- a/ct/deferred/polaris.sh +++ b/ct/deferred/polaris.sh @@ -34,7 +34,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5050${CL}" diff --git a/ct/deferred/roundcubemail.sh b/ct/deferred/roundcubemail.sh index 569675fbf..93ae76e8e 100644 --- a/ct/deferred/roundcubemail.sh +++ b/ct/deferred/roundcubemail.sh @@ -59,6 +59,6 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${APP} should be reachable by going to the following URL. ${BL}http://${IP}/installer ${CL} \n" diff --git a/ct/deferred/squirrelserversmanager.sh b/ct/deferred/squirrelserversmanager.sh index 663822dcd..94e85d30e 100644 --- a/ct/deferred/squirrelserversmanager.sh +++ b/ct/deferred/squirrelserversmanager.sh @@ -52,6 +52,6 @@ msg_info "Setting Container to Normal Resources" pct set $CTID -memory 1024 pct set $CTID -cores 1 msg_ok "Set Container to Normal Resources" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${APP} should be reachable by going to the following URL. ${BL}http://${IP}:80${CL} \n" diff --git a/ct/devuan.sh b/ct/devuan.sh index b1bc6acee..489c1f8d1 100644 --- a/ct/devuan.sh +++ b/ct/devuan.sh @@ -27,10 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Devuan LXC" $STD apt-get update $STD apt-get -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated Devuan LXC" exit } @@ -38,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/ente.sh b/ct/ente.sh index cf834013f..7e71a7303 100644 --- a/ct/ente.sh +++ b/ct/ente.sh @@ -27,10 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Ente LXC" $STD apt-get update $STD apt-get -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated Ente LXC" exit } @@ -38,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/fedora.sh b/ct/fedora.sh index d79815be7..66a67247c 100644 --- a/ct/fedora.sh +++ b/ct/fedora.sh @@ -27,9 +27,9 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Fedora LXC" $STD dnf -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated Fedora LXC" exit } @@ -37,5 +37,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/freepbx.sh b/ct/freepbx.sh index 2f3a9f36c..e16a1c47a 100644 --- a/ct/freepbx.sh +++ b/ct/freepbx.sh @@ -30,16 +30,16 @@ function update_script() { exit fi - msg_info "Updating $APP LXC" + msg_info "Updating FreePBX LXC" $STD apt-get update $STD apt-get -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated FreePBX LXC" - msg_info "Updating $APP Modules" + msg_info "Updating FreePBX Modules" $STD fwconsole ma updateall $STD fwconsole reload - msg_ok "Updated $APP Modules" - + msg_ok "Updated FreePBX Modules" + msg_ok "Updated successfully!" exit } @@ -61,7 +61,7 @@ fi build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/frigate.sh b/ct/frigate.sh index b70b22083..ecdc17126 100644 --- a/ct/frigate.sh +++ b/ct/frigate.sh @@ -35,7 +35,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5000${CL}" diff --git a/ct/garmin-grafana.sh b/ct/garmin-grafana.sh index 0d486f795..cdda1b605 100644 --- a/ct/garmin-grafana.sh +++ b/ct/garmin-grafana.sh @@ -32,11 +32,11 @@ function update_script() { RELEASE=$(curl -fsSL https://api.github.com/repos/arpanghosh8453/garmin-grafana/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }') if [[ ! -d /opt/garmin-grafana/ ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then - msg_info "Stopping $APP" + msg_info "Stopping Services" systemctl stop garmin-grafana systemctl stop grafana-server systemctl stop influxdb - msg_ok "Stopped $APP" + msg_ok "Stopped Services" if [[ ! -f /opt/garmin-grafana/.env ]]; then msg_error "No .env file found in /opt/garmin-grafana/.env" @@ -59,7 +59,6 @@ function update_script() { mv "garmin-grafana-${RELEASE}/" "/opt/garmin-grafana" rm -f "${RELEASE}.zip" $STD uv sync --locked --project /opt/garmin-grafana/ - # shellcheck disable=SC2016 sed -i 's/\${DS_GARMIN_STATS}/garmin_influxdb/g' /opt/garmin-grafana/Grafana_Dashboard/Garmin-Grafana-Dashboard.json sed -i 's/influxdb:8086/localhost:8086/' /opt/garmin-grafana/Grafana_Datasource/influxdb.yaml sed -i "s/influxdb_user/${INFLUXDB_USER}/" /opt/garmin-grafana/Grafana_Datasource/influxdb.yaml @@ -73,18 +72,17 @@ function update_script() { cp -r /opt/garmin-grafana-backup/.garminconnect /opt/garmin-grafana/.garminconnect msg_ok "Updated $APP to v${RELEASE}" - msg_info "Starting $APP" + msg_info "Starting Services" systemctl start garmin-grafana systemctl start grafana-server systemctl start influxdb - msg_ok "Started $APP" - + msg_ok "Started Services" msg_info "Cleaning Up" rm -rf /opt/garmin-grafana-backup msg_ok "Cleanup Completed" echo "${RELEASE}" >/opt/${APP}_version.txt - msg_ok "Update Successful" + msg_ok "Updated Successfully!" else msg_ok "No update required. ${APP} is already at v${RELEASE}" fi @@ -95,7 +93,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/gentoo.sh b/ct/gentoo.sh index b42a3858c..d26706d5d 100644 --- a/ct/gentoo.sh +++ b/ct/gentoo.sh @@ -27,10 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Gentoo LXC" $STD emerge --sync $STD emerge --quiet --update --deep @world - msg_ok "Updated $APP LXC" + msg_ok "Updated Gentoo LXC" exit } @@ -38,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/heimdall-dashboard.sh b/ct/heimdall-dashboard.sh index c1c64b0b9..6fe51c7ba 100644 --- a/ct/heimdall-dashboard.sh +++ b/ct/heimdall-dashboard.sh @@ -74,7 +74,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7990${CL}" diff --git a/ct/hoodik.sh b/ct/hoodik.sh index 89e48de62..f6fb3b526 100644 --- a/ct/hoodik.sh +++ b/ct/hoodik.sh @@ -38,7 +38,7 @@ function update_script() { cp /opt/hoodik/.env /tmp/hoodik.env.bak msg_ok "Backed up Configuration" - msg_info "Updating ${APP} (Patience - this takes 15-20 minutes)" + msg_info "Updating Hoodik (Patience - this takes 15-20 minutes)" source ~/.cargo/env rm -rf /opt/hoodik fetch_and_deploy_gh_release "hoodik" "hudikhq/hoodik" "tarball" "latest" "/opt/hoodik" @@ -54,7 +54,7 @@ function update_script() { $STD cargo build --release cp /opt/hoodik/target/release/hoodik /usr/local/bin/hoodik chmod +x /usr/local/bin/hoodik - msg_ok "Updated ${APP}" + msg_ok "Updated Hoodik" msg_info "Restoring Configuration" cp /tmp/hoodik.env.bak /opt/hoodik/.env @@ -70,7 +70,6 @@ function update_script() { msg_info "Starting Services" systemctl start hoodik msg_ok "Started Services" - msg_ok "Updated Successfully" fi exit @@ -80,7 +79,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:5443${CL}" diff --git a/ct/investbrain.sh b/ct/investbrain.sh index ac9181e0d..4539f8a94 100644 --- a/ct/investbrain.sh +++ b/ct/investbrain.sh @@ -76,7 +76,6 @@ function update_script() { systemctl start php${PHP_VERSION}-fpm nginx supervisorctl start all msg_ok "Services Started" - msg_ok "Updated Successfully!" fi exit @@ -86,7 +85,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/ct/kutt.sh b/ct/kutt.sh index 685d9b362..f1bc257bf 100644 --- a/ct/kutt.sh +++ b/ct/kutt.sh @@ -68,7 +68,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}https://${IP} or https://${CL}" diff --git a/ct/linkwarden.sh b/ct/linkwarden.sh index acf7e7138..8753ce8f4 100644 --- a/ct/linkwarden.sh +++ b/ct/linkwarden.sh @@ -69,7 +69,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/manyfold.sh b/ct/manyfold.sh index cef4da3eb..08ea18617 100644 --- a/ct/manyfold.sh +++ b/ct/manyfold.sh @@ -90,13 +90,8 @@ EOF done systemctl enable -q --now manyfold.target manyfold-rails.1 manyfold-default_worker.1 manyfold-performance_worker.1 msg_ok "Restored Service" + msg_ok "Updated successfully!" fi - - msg_info "Cleaning up" - $STD apt -y autoremove - $STD apt -y autoclean - $STD apt -y clean - msg_ok "Cleaned" exit } @@ -104,7 +99,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/nextexplorer.sh b/ct/nextexplorer.sh index b82c3d750..6b2b651b4 100644 --- a/ct/nextexplorer.sh +++ b/ct/nextexplorer.sh @@ -68,7 +68,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3000${CL}" diff --git a/ct/opencloud.sh b/ct/opencloud.sh index 5528a5924..6c047fa6d 100644 --- a/ct/opencloud.sh +++ b/ct/opencloud.sh @@ -54,7 +54,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}https://${CL}" diff --git a/ct/openeuler.sh b/ct/openeuler.sh index 21b34ec88..087f5d853 100644 --- a/ct/openeuler.sh +++ b/ct/openeuler.sh @@ -27,9 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating OpenEuler LXC" $STD dnf -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated OpenEuler LXC" + msg_ok "Updated successfully!" exit } @@ -37,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!\n" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/opensuse.sh b/ct/opensuse.sh index 6b82225fc..94cf4043d 100644 --- a/ct/opensuse.sh +++ b/ct/opensuse.sh @@ -27,9 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating OpenSUSE LXC" $STD zypper -n update - msg_ok "Updated $APP LXC" + msg_ok "Updated OpenSUSE LXC" + msg_ok "Updated successfully!" exit } @@ -37,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!\n" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/papra.sh b/ct/papra.sh index 79c486546..7804d77e8 100644 --- a/ct/papra.sh +++ b/ct/papra.sh @@ -27,7 +27,7 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Papra LXC" systemctl stop papra cd /opt/papra git fetch @@ -36,7 +36,8 @@ function update_script() { $STD pnpm --filter "@papra/app-client..." run build $STD pnpm --filter "@papra/app-server..." run build systemctl start papra - msg_ok "Updated $APP LXC" + msg_ok "Updated Papra LXC" + msg_ok "Updated successfully!" exit } @@ -44,5 +45,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!\n" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/petio.sh b/ct/petio.sh index c0587cbd0..e70e5d93f 100644 --- a/ct/petio.sh +++ b/ct/petio.sh @@ -26,12 +26,13 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP" - systemctl stop petio.service + msg_info "Updating Pepito" + systemctl stop petio curl -fsSL https://petio.tv/releases/latest -o petio-latest.zip $STD unzip petio-latest.zip -d /opt/Petio - systemctl start petio.service - msg_ok "Updated $APP" + systemctl start petio + msg_ok "Updated Pepito" + msg_ok "Updated successfully!" exit } @@ -39,7 +40,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7777${CL}" diff --git a/ct/piler.sh b/ct/piler.sh index 3eb1b4148..bfd2831c0 100644 --- a/ct/piler.sh +++ b/ct/piler.sh @@ -67,11 +67,11 @@ function update_script() { chown piler:piler /etc/piler/piler.conf msg_ok "Restored Configuration" - msg_info "Starting Piler Services" + msg_info "Starting Services" $STD systemctl start manticore $STD systemctl start piler - msg_ok "Started Piler Services" - msg_ok "Updated Successfully to v${RELEASE_NEW}" + msg_ok "Started Services" + msg_ok "Updated successfully!" else msg_ok "No update available (current: v${RELEASE_OLD})" fi @@ -82,7 +82,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/pixelfed.sh b/ct/pixelfed.sh index f506bb1ef..30581a249 100644 --- a/ct/pixelfed.sh +++ b/ct/pixelfed.sh @@ -61,7 +61,7 @@ function update_script() { msg_info "Starting Services" systemctl start pixelfed-horizon pixelfed-scheduler.timer msg_ok "Services started" - msg_ok "Updated Successfully" + msg_ok "Updated successfully!" fi exit } @@ -70,7 +70,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/plex.sh b/ct/plex.sh index 94a89f032..00590c47c 100644 --- a/ct/plex.sh +++ b/ct/plex.sh @@ -34,10 +34,10 @@ function update_script() { "2" "Install plexupdate" OFF \ 3>&1 1>&2 2>&3) if [ "$UPD" == "1" ]; then - msg_info "Updating ${APP} LXC" + msg_info "Updating Plex LXC" $STD apt update $STD apt -y upgrade - msg_ok "Updated ${APP} LXC" + msg_ok "Updated Plex LXC" msg_ok "Updated successfully!" exit fi @@ -53,7 +53,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:32400/web${CL}" diff --git a/ct/plex2.sh b/ct/plex2.sh index be731017e..dff1fdd62 100644 --- a/ct/plex2.sh +++ b/ct/plex2.sh @@ -34,10 +34,10 @@ function update_script() { "2" "Install plexupdate" OFF \ 3>&1 1>&2 2>&3) if [ "$UPD" == "1" ]; then - msg_info "Updating ${APP} LXC" + msg_info "Updating Plex" $STD apt update $STD apt -y upgrade - msg_ok "Updated ${APP} LXC" + msg_ok "Updated Plex" msg_ok "Updated successfully!" exit fi @@ -53,7 +53,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:32400/web${CL}" diff --git a/ct/postgresus.sh b/ct/postgresus.sh index ba2c8cfee..f3906c320 100644 --- a/ct/postgresus.sh +++ b/ct/postgresus.sh @@ -69,7 +69,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/rockylinux.sh b/ct/rockylinux.sh index 733cda5e7..24ff57599 100644 --- a/ct/rockylinux.sh +++ b/ct/rockylinux.sh @@ -27,9 +27,10 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Rocky Linux LXC" $STD dnf -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated Rocky Linux LXC" + msg_ok "Completed successfully!" exit } @@ -37,5 +38,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!\n" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/romm.sh b/ct/romm.sh index 38e0b159e..3d9c37a1b 100644 --- a/ct/romm.sh +++ b/ct/romm.sh @@ -39,7 +39,7 @@ function update_script() { cp /opt/romm/.env /opt/romm/.env.backup msg_ok "Backed up configuration" - msg_info "Updating ${APP}" + msg_info "Updating ROMM" fetch_and_deploy_gh_release "romm" "rommapp/romm" "tarball" "latest" "/opt/romm" cp /opt/romm/.env.backup /opt/romm/.env @@ -60,7 +60,7 @@ function update_script() { mkdir -p /opt/romm/frontend/dist/assets/romm ln -sfn /var/lib/romm/resources /opt/romm/frontend/dist/assets/romm/resources ln -sfn /var/lib/romm/assets /opt/romm/frontend/dist/assets/romm/assets - msg_ok "Updated ${APP}" + msg_ok "Updated ROMM" msg_info "Starting Services" systemctl start romm-backend romm-worker romm-scheduler romm-watcher @@ -74,7 +74,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/ct/rustypaste.sh b/ct/rustypaste.sh index 3b33ded97..504e142dd 100644 --- a/ct/rustypaste.sh +++ b/ct/rustypaste.sh @@ -30,9 +30,9 @@ function update_script() { fi if check_for_gh_release "rustypaste" "orhun/rustypaste"; then - msg_info "Stopping rustypaste" + msg_info "Stopping Services" systemctl stop rustypaste - msg_ok "Stopped rustypaste" + msg_ok "Stopped Services" msg_info "Creating Backup" tar -czf "/opt/rustypaste_backup_$(date +%F).tar.gz" "/opt/rustypaste/upload" @@ -46,10 +46,10 @@ function update_script() { $STD cargo build --locked --release msg_ok "Updated rustypaste" - msg_info "Starting rustypaste" + msg_info "Starting Services" systemctl start rustypaste - msg_ok "Started rustypaste" - msg_ok "Update Successful" + msg_ok "Started Services" + msg_ok "Updated successfully!" fi exit } @@ -58,7 +58,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}rustypaste setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/ct/rybbit.sh b/ct/rybbit.sh index 60ee32893..621e0e1b3 100644 --- a/ct/rybbit.sh +++ b/ct/rybbit.sh @@ -27,10 +27,11 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating $APP LXC" + msg_info "Updating Rybbit LXC" $STD apt-get update $STD apt-get -y upgrade - msg_ok "Updated $APP LXC" + msg_ok "Updated Rybbit LXC" + msg_ok "Updated successfully!" exit } @@ -38,5 +39,5 @@ start build_container description -msg_ok "Completed Successfully!" +msg_ok "Completed successfully!\n" msg_custom "πŸš€" "${GN}" "${APP} setup has been successfully initialized!" diff --git a/ct/sportarr.sh b/ct/sportarr.sh index 4a22c9858..68c932992 100644 --- a/ct/sportarr.sh +++ b/ct/sportarr.sh @@ -29,15 +29,15 @@ function update_script() { fi if check_for_gh_release "sportarr" "Sportarr/Sportarr"; then - msg_info "Stopping Sportarr Service" + msg_info "Stopping Services" systemctl stop sportarr - msg_ok "Stopped Sportarr Service" + msg_ok "Stopped Services" fetch_and_deploy_gh_release "sportarr" "Sportarr/Sportarr" "prebuild" "latest" "/opt/sportarr" "Sportarr-linux-x64-*.tar.gz" - msg_info "Starting Sportarr Service" + msg_info "Starting Services" systemctl start sportarr - msg_ok "Started Sportarr Service" + msg_ok "Started Services" msg_ok "Updated successfully!" fi exit @@ -47,7 +47,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:1867${CL}" diff --git a/ct/transmission-openvpn.sh b/ct/transmission-openvpn.sh index 95938fbeb..313ab7db9 100644 --- a/ct/transmission-openvpn.sh +++ b/ct/transmission-openvpn.sh @@ -67,12 +67,9 @@ function update_script() { fi msg_info "Cleaning up" - $STD apt -y autoremove - $STD apt -y autoclean - $STD apt -y clean rm -rf /opt/docker-transmission-openvpn msg_ok "Cleaned" - + msg_ok "Updated successfully!" exit } @@ -80,7 +77,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:9091${CL}" diff --git a/ct/ubuntu.sh b/ct/ubuntu.sh index bcb60fab3..4f24cd6a0 100644 --- a/ct/ubuntu.sh +++ b/ct/ubuntu.sh @@ -28,10 +28,11 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - msg_info "Updating ${APP} LXC" + msg_info "Updating Ubuntu LXC" $STD apt-get update $STD apt-get -y upgrade - msg_ok "Updated ${APP} LXC" + msg_ok "Updated Ubuntu LXC" + msg_ok "Updated successfully!" exit } @@ -39,5 +40,5 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/ct/yubal.sh b/ct/yubal.sh index d876f8283..ca42db372 100644 --- a/ct/yubal.sh +++ b/ct/yubal.sh @@ -51,7 +51,7 @@ function update_script() { msg_info "Starting Services" systemctl start yubal msg_ok "Started Services" - msg_ok "Updated Successfully" + msg_ok "Updated successfully!" fi exit } @@ -60,7 +60,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8000${CL}" diff --git a/docs/contribution/GUIDE.md b/docs/contribution/GUIDE.md index b3f8ec839..52c4d950f 100644 --- a/docs/contribution/GUIDE.md +++ b/docs/contribution/GUIDE.md @@ -310,7 +310,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:PORT${CL}" diff --git a/docs/contribution/templates_ct/AppName.md b/docs/contribution/templates_ct/AppName.md index 23d821e4d..8507c7c2d 100644 --- a/docs/contribution/templates_ct/AppName.md +++ b/docs/contribution/templates_ct/AppName.md @@ -266,7 +266,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}${CL}" diff --git a/docs/contribution/templates_ct/AppName.sh b/docs/contribution/templates_ct/AppName.sh index fbf862e9d..cf9333c4f 100644 --- a/docs/contribution/templates_ct/AppName.sh +++ b/docs/contribution/templates_ct/AppName.sh @@ -80,7 +80,7 @@ start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:[PORT]${CL}" diff --git a/docs/ct/DETAILED_GUIDE.md b/docs/ct/DETAILED_GUIDE.md index 928ff55a0..cd2f8d11d 100644 --- a/docs/ct/DETAILED_GUIDE.md +++ b/docs/ct/DETAILED_GUIDE.md @@ -131,7 +131,7 @@ function update_script() { ... } # [10] Update function (optional) start # [11] Launch container creation build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" ``` --- @@ -254,7 +254,7 @@ build_container description # Display success message -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8080${CL}" @@ -386,7 +386,7 @@ function update_script() { start build_container description -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" ``` --- diff --git a/tools/addon/netdata.sh b/tools/addon/netdata.sh index 4883a5b56..8d7d3a263 100644 --- a/tools/addon/netdata.sh +++ b/tools/addon/netdata.sh @@ -132,7 +132,7 @@ install() { $STD apt-get update $STD apt-get install -y netdata msg_ok "Installed Netdata" - msg_ok "Completed Successfully!\n" + msg_ok "Completed successfully!\n" echo -e "\n Netdata should be reachable at${BL} http://$(hostname -I | awk '{print $1}'):19999 ${CL}\n" } @@ -150,7 +150,7 @@ uninstall() { $STD apt autoremove -y $STD userdel netdata || true msg_ok "Uninstalled Netdata" - msg_ok "Completed Successfully!\n" + msg_ok "Completed successfully!\n" } header_info diff --git a/vm/allstarlink-vm.sh b/vm/allstarlink-vm.sh index e7d07a893..d0f04f78c 100644 --- a/vm/allstarlink-vm.sh +++ b/vm/allstarlink-vm.sh @@ -494,4 +494,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started AllStarLink VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/archlinux-vm.sh b/vm/archlinux-vm.sh index f60cf3fe3..43511ee33 100644 --- a/vm/archlinux-vm.sh +++ b/vm/archlinux-vm.sh @@ -525,4 +525,4 @@ if [ "$START_VM" == "yes" ]; then fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/debian-vm-test-helper.sh b/vm/debian-vm-test-helper.sh index 4cf217b7a..a8a80a3b7 100644 --- a/vm/debian-vm-test-helper.sh +++ b/vm/debian-vm-test-helper.sh @@ -402,5 +402,5 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Debian 12 VM" fi -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/debian-vm.sh b/vm/debian-vm.sh index 7f20be15e..38d7f432f 100644 --- a/vm/debian-vm.sh +++ b/vm/debian-vm.sh @@ -376,5 +376,5 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Debian 12 VM" fi -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/docker-vm-debug.sh b/vm/docker-vm-debug.sh index 8445c499c..b571287d7 100644 --- a/vm/docker-vm-debug.sh +++ b/vm/docker-vm-debug.sh @@ -914,4 +914,4 @@ if [ "$USE_CLOUD_INIT" = "yes" ]; then fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/docker-vm.sh b/vm/docker-vm.sh index 9f9436484..013988b0c 100644 --- a/vm/docker-vm.sh +++ b/vm/docker-vm.sh @@ -777,4 +777,4 @@ if [ "$USE_CLOUD_INIT" = "yes" ]; then fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/docker-vm.sh.bak b/vm/docker-vm.sh.bak index ff4147365..9e700b9fa 100644 --- a/vm/docker-vm.sh.bak +++ b/vm/docker-vm.sh.bak @@ -629,7 +629,7 @@ if [[ "$START_VM" == "yes" ]]; then fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" # ---- Hinweise/Debug (Cloud-Init) -------------------------------------------- # In der VM prΓΌfen: diff --git a/vm/haos-vm.sh b/vm/haos-vm.sh index 7bb4dc81a..df256948c 100644 --- a/vm/haos-vm.sh +++ b/vm/haos-vm.sh @@ -548,4 +548,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Home Assistant OS VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/k3s-vm.sh b/vm/k3s-vm.sh index e1d8adb36..ca20e5662 100644 --- a/vm/k3s-vm.sh +++ b/vm/k3s-vm.sh @@ -386,5 +386,5 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Debian 12 VM" fi -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" msg_custom "More Info at https://github.com/community-scripts/ProxmoxVED/discussions/836" diff --git a/vm/mikrotik-routeros.sh b/vm/mikrotik-routeros.sh index 7d3b37f63..901eab49f 100644 --- a/vm/mikrotik-routeros.sh +++ b/vm/mikrotik-routeros.sh @@ -346,4 +346,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Mikrotik RouterOS CHR VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/nextcloud-vm.sh b/vm/nextcloud-vm.sh index 9966046fa..93ea21f4f 100644 --- a/vm/nextcloud-vm.sh +++ b/vm/nextcloud-vm.sh @@ -481,4 +481,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started $NAME" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/opnsense-vm.sh b/vm/opnsense-vm.sh index 0d2acd133..131382929 100644 --- a/vm/opnsense-vm.sh +++ b/vm/opnsense-vm.sh @@ -686,7 +686,7 @@ sleep 10 send_line_to_vm "0" msg_ok "Started OPNsense VM" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" if [ "$IP_ADDR" != "" ]; then echo -e "${INFO}${YW} Access it using the following URL:${CL}" echo -e "${TAB}${GATEWAY}${BGN}http://${IP_ADDR}${CL}" diff --git a/vm/owncloud-vm.sh b/vm/owncloud-vm.sh index 5ebcf92ba..23769982d 100644 --- a/vm/owncloud-vm.sh +++ b/vm/owncloud-vm.sh @@ -482,4 +482,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started $NAME" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/pimox-haos-vm.sh b/vm/pimox-haos-vm.sh index bf0141fee..4ee0d0c9e 100644 --- a/vm/pimox-haos-vm.sh +++ b/vm/pimox-haos-vm.sh @@ -382,4 +382,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Home Assistant OS VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/ubuntu2204-vm.sh b/vm/ubuntu2204-vm.sh index 6cdc22643..14a89b939 100644 --- a/vm/ubuntu2204-vm.sh +++ b/vm/ubuntu2204-vm.sh @@ -522,6 +522,6 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Ubuntu 22.04 VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "Setup Cloud-Init before starting \n More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" diff --git a/vm/ubuntu2404-vm.sh b/vm/ubuntu2404-vm.sh index 98b01e4d4..7bcfc4137 100644 --- a/vm/ubuntu2404-vm.sh +++ b/vm/ubuntu2404-vm.sh @@ -524,6 +524,6 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Ubuntu 24.04 VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "Setup Cloud-Init before starting \n More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" diff --git a/vm/ubuntu2410-vm.sh b/vm/ubuntu2410-vm.sh index 71498c60f..46d900c6e 100644 --- a/vm/ubuntu2410-vm.sh +++ b/vm/ubuntu2410-vm.sh @@ -658,6 +658,6 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started $APP" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" echo -e "Setup Cloud-Init before starting \n More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" diff --git a/vm/umbrel-os-vm.sh b/vm/umbrel-os-vm.sh index 7942e8802..6e7e4b25f 100644 --- a/vm/umbrel-os-vm.sh +++ b/vm/umbrel-os-vm.sh @@ -527,4 +527,4 @@ if [ "$START_VM" == "yes" ]; then msg_ok "Started Umbrel OS VM" fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n" diff --git a/vm/unifi-os-server-vm.sh b/vm/unifi-os-server-vm.sh index 8de2da1da..7ea19eb4f 100644 --- a/vm/unifi-os-server-vm.sh +++ b/vm/unifi-os-server-vm.sh @@ -815,4 +815,4 @@ EOFINSTALL fi post_update_to_api "done" "none" -msg_ok "Completed Successfully!\n" +msg_ok "Completed successfully!\n"