diff --git a/ct/argus.sh b/ct/argus.sh index 3bf88cf..2180d6e 100644 --- a/ct/argus.sh +++ b/ct/argus.sh @@ -44,6 +44,8 @@ function update_script() { } start +build_container +description msg_ok "Completed Successfully!\n" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" diff --git a/misc/build.func b/misc/build.func index 274aa4b..2019933 100644 --- a/misc/build.func +++ b/misc/build.func @@ -925,7 +925,6 @@ check_container_storage() { start() { source <(curl -fsSL https://git.community-scripts.org/community-scripts/ProxmoxVED/raw/branch/main/misc/tools.func) - if command -v pveversion >/dev/null 2>&1; then if ! (whiptail --backtitle "[dev] Proxmox VE Helper Scripts" --title "${APP} LXC" --yesno "This will create a New ${APP} LXC. Proceed?" 10 58); then clear @@ -933,8 +932,6 @@ start() { exit fi install_script - build_container - description else CHOICE=$(whiptail --backtitle "[dev] Proxmox VE Helper Scripts" --title "${APP} LXC Update/Setting" --menu \ "Support/Update functions for ${APP} LXC. Choose an option:" \ @@ -947,22 +944,18 @@ start() { 1) VERBOSE="no" set_std_mode - update_script ;; - 2) VERBOSE="yes" set_std_mode - update_script ;; - 3) clear exit_script exit ;; esac - return + update_script fi }