2023-03-22 20:48:20 -04:00
|
|
|
#!/usr/bin/env bash
|
2025-04-01 10:25:46 +02:00
|
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 tteck
|
2023-03-22 20:48:20 -04:00
|
|
|
# Author: tteck (tteckster)
|
2024-12-16 12:42:51 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://cronicle.net/
|
2023-03-22 20:48:20 -04:00
|
|
|
|
|
|
|
|
APP="Cronicle"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_tags="${var_tags:-task-scheduler}"
|
|
|
|
|
var_cpu="${var_cpu:-1}"
|
|
|
|
|
var_ram="${var_ram:-512}"
|
|
|
|
|
var_disk="${var_disk:-2}"
|
|
|
|
|
var_os="${var_os:-debian}"
|
2026-01-23 21:54:23 +01:00
|
|
|
var_version="${var_version:-13}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2024-12-16 12:42:51 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
2023-03-22 20:48:20 -04:00
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2024-12-16 12:42:51 +01:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
remove whiptail from update scripts for unattended update support (#11712)
* Simplify Alpine update scripts to run upgrade
Remove interactive whiptail menus, loops and newt dependency checks from ct/alpine-docker.sh, ct/alpine-zigbee2mqtt.sh, and ct/alpine.sh. Each update_script now simply calls header_info, runs $STD apk -U upgrade, displays a success message and exits, simplifying and automating the update flow.
* feat(update-scripts): replace whiptail with msg_menu for unattended updates
Remove all whiptail dialogs from ct update_script() functions and replace
with msg_menu() - a lightweight read-based menu that supports:
- PHS_SILENT=1: auto-selects first (default) option for unattended mode
- Interactive: numbered menu with 10s timeout and default fallback
Converted scripts (whiptail menu → msg_menu):
- plex.sh, npmplus.sh, cronicle.sh, meilisearch.sh, node-red.sh
- homeassistant.sh, podman-homeassistant.sh
- vaultwarden.sh, alpine-vaultwarden.sh
- loki.sh, alpine-loki.sh
- alpine-grafana.sh, alpine-redis.sh, alpine-valkey.sh
- alpine-nextcloud.sh
Simplified scripts (removed unnecessary whiptail for single-action updates):
- alpine.sh, alpine-docker.sh, alpine-zigbee2mqtt.sh
Special handling:
- gitea-mirror.sh: replaced yesno/msgbox with read -rp confirmations,
exit 75 in silent mode for major version upgrades requiring interaction
- vaultwarden.sh/alpine-vaultwarden.sh: passwordbox replaced with
read -r -s -p, skipped in silent mode with warning
- nginxproxymanager.sh: exit 1 → exit 75 for disabled script
Infrastructure:
- Added msg_menu() helper to misc/build.func
- Added exit code 75 handling in update-apps.sh (skip, not fail)
Closes #11620
* refactor(update-scripts): remove menus where sequential updates suffice
- alpine-nextcloud: add apk upgrade as the update action (was missing)
- meilisearch: run meilisearch + UI updates sequentially (like bar-assistant)
- npmplus: run alpine upgrade + docker pull sequentially, no menu
- vaultwarden: update VaultWarden + Web-Vault sequentially, remove admin
token option (interactive-only, not suitable for unattended updates)
- alpine-vaultwarden: just run apk upgrade, remove admin token menu
2026-02-09 11:05:31 +01:00
|
|
|
UPD=$(msg_menu "Cronicle Update Options" \
|
|
|
|
|
"1" "Update ${APP}" \
|
|
|
|
|
"2" "Install ${APP} Worker")
|
2023-03-22 20:48:20 -04:00
|
|
|
|
2024-12-16 12:42:51 +01:00
|
|
|
if [ "$UPD" == "1" ]; then
|
|
|
|
|
if [[ ! -d /opt/cronicle ]]; then
|
|
|
|
|
msg_error "No ${APP} Installation Found!"
|
|
|
|
|
exit
|
2024-01-03 01:25:05 -05:00
|
|
|
fi
|
2025-08-29 12:27:24 +02:00
|
|
|
NODE_VERSION="22" setup_nodejs
|
|
|
|
|
|
2026-01-23 21:54:23 +01:00
|
|
|
msg_info "Updating Cronicle"
|
2025-02-24 12:49:16 +01:00
|
|
|
$STD /opt/cronicle/bin/control.sh upgrade
|
2026-01-23 21:54:23 +01:00
|
|
|
msg_ok "Updated Cronicle"
|
2024-12-16 12:42:51 +01:00
|
|
|
exit
|
2024-01-03 01:25:05 -05:00
|
|
|
fi
|
2024-12-16 12:42:51 +01:00
|
|
|
if [ "$UPD" == "2" ]; then
|
2025-07-28 23:21:47 +02:00
|
|
|
NODE_VERSION="22" setup_nodejs
|
2025-08-29 12:27:24 +02:00
|
|
|
if check_for_gh_release "cronicle" "jhuckaby/Cronicle"; then
|
|
|
|
|
msg_info "Installing Dependencies"
|
2026-02-02 13:01:17 +01:00
|
|
|
ensure_dependencies git build-essential ca-certificates
|
2025-08-29 12:27:24 +02:00
|
|
|
msg_ok "Installed Dependencies"
|
2023-03-22 20:48:20 -04:00
|
|
|
|
2025-08-29 12:27:24 +02:00
|
|
|
NODE_VERSION="22" setup_nodejs
|
2026-01-07 08:49:12 +01:00
|
|
|
fetch_and_deploy_gh_release "cronicle" "jhuckaby/Cronicle" "tarball"
|
2025-08-29 12:27:24 +02:00
|
|
|
|
|
|
|
|
msg_info "Configuring Cronicle Worker"
|
|
|
|
|
cd /opt/cronicle
|
|
|
|
|
$STD npm install
|
|
|
|
|
$STD node bin/build.js dist
|
2026-01-19 16:33:08 +01:00
|
|
|
sed -i "s/localhost:3012/${LOCAL_IP}:3012/g" /opt/cronicle/conf/config.json
|
2025-08-29 12:27:24 +02:00
|
|
|
$STD /opt/cronicle/bin/control.sh start
|
|
|
|
|
msg_ok "Installed Cronicle Worker"
|
|
|
|
|
echo -e "\n Add Masters secret key to /opt/cronicle/conf/config.json \n"
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Updated successfully!"
|
2025-08-29 12:27:24 +02:00
|
|
|
exit
|
|
|
|
|
fi
|
2024-12-16 12:42:51 +01:00
|
|
|
fi
|
2023-03-22 20:48:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
|
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2024-12-16 12:42:51 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
|
|
|
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
|
2025-04-01 14:33:26 +02:00
|
|
|
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:3012${CL}"
|