From 0880352c1a969b06a33378bad8f3fab5abd65b5a Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 2 Jan 2023 09:57:48 -0500 Subject: [PATCH] Update docker-v5.sh tweak --- ct/docker-v5.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/docker-v5.sh b/ct/docker-v5.sh index 04c639dc..50ddd2b7 100644 --- a/ct/docker-v5.sh +++ b/ct/docker-v5.sh @@ -81,7 +81,7 @@ if command -v pveversion >/dev/null 2>&1; then fi if ! command -v pveversion >/dev/null 2>&1; then if [[ ! -d /etc/docker ]]; then - msg_error "No Docker Installation Found!"; + msg_error "No ${APP} Installation Found!"; exit fi if (whiptail --title "${APP} LXC UPDATE" --yesno "This will update ${APP} LXC. Proceed?" 10 58); then @@ -317,10 +317,10 @@ function install_script() { function update_script() { clear header_info -msg_info "Updating Docker LXC" +msg_info "Updating ${APP} LXC" apt-get update &>/dev/null apt-get -y upgrade &>/dev/null -msg_ok "Updated Docker LXC" +msg_ok "Updated ${APP} LXC" exit } clear