mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-29 18:55:01 +02:00
03963b5193
* Add host-migrate.sh Proxmox VE tool Add tools/pve/host-migrate.sh — an interactive Proxmox VE host migration utility. The script (whiptail UI) can export host configuration, /etc tarball, SSH keys, APT state and LXC/QEMU guests (vzdump or config-only) into a timestamped bundle, with optional on-demand NFS mounting. It also supports importing bundles to restore guests and selective host components (storage, users, SSH, APT, hosts, network, hostname) with explicit warnings for dangerous operations (network/hostname). Implements preflight checks, manifest creation, storage mapping checks, cleanup trap for NFS, and integrates helper functions loaded from the project's core scripts. * Improve storage prep & mounting in host-migrate Add interactive storage preparation and safer mount handling for host-migrate. - Track and clean up on-demand mounts via TEMP_MOUNTS and extend cleanup handler. - Add helpers: _new_mountpoint, _offer_fstab, mount_existing_fs, format_and_mount, create_lv_and_mount to mount, format, or create LVs and optionally persist to /etc/fstab. - Enhance browse_mounts to list unmounted block devices and LVM VGs, offer mount/format/LV creation, and return prepared mount via BROWSE_RESULT. - Integrate prepared target into choose_location and do_export; show free-space warning before export. - Improve vzdump output detection to pick the newest non-log file. - Minor UX/message tweaks and quoting fixes for backup filenames when restoring storage.cfg and /etc/hosts. These changes let users pick or prepare target storage (mount existing FS, format disks, create LVs) interactively and ensures temporary mounts are cleaned up. * fixes for npm, loki, omada, wishlist Remove promtail from loki/alpine-loki Replace node execstart in npm during update add user agent to omada download use pnpm 11 for wishlist * remove Host migrate --------- Co-authored-by: MickLesk <mickey.leskowitz@gmail.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
83 lines
2.3 KiB
Bash
83 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: hoholms
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/grafana/loki
|
|
|
|
APP="Loki"
|
|
var_tags="${var_tags:-monitoring;logs}"
|
|
var_cpu="${var_cpu:-1}"
|
|
var_ram="${var_ram:-512}"
|
|
var_disk="${var_disk:-2}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-yes}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
if ! dpkg -s loki >/dev/null 2>&1; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit 233
|
|
fi
|
|
|
|
CHOICE=$(msg_menu "Loki Update Options" \
|
|
"1" "Update Loki" \
|
|
"2" "Allow 0.0.0.0 for listening" \
|
|
"3" "Allow only ${LOCAL_IP} for listening")
|
|
|
|
case $CHOICE in
|
|
1)
|
|
msg_info "Stopping Loki"
|
|
systemctl stop loki
|
|
msg_ok "Stopped Loki"
|
|
|
|
msg_info "Updating Loki"
|
|
$STD apt update
|
|
$STD apt install -y --only-upgrade loki
|
|
msg_ok "Updated Loki"
|
|
|
|
msg_info "Starting Loki"
|
|
systemctl start loki
|
|
msg_ok "Started Loki"
|
|
msg_ok "Updated successfully!"
|
|
exit
|
|
;;
|
|
2)
|
|
msg_info "Configuring Loki to listen on 0.0.0.0"
|
|
sed -i 's/http_listen_address:.*/http_listen_address: 0.0.0.0/' /etc/loki/config.yml
|
|
sed -i 's/http_listen_port:.*/http_listen_port: 3100/' /etc/loki/config.yml
|
|
systemctl restart loki
|
|
msg_ok "Configured Loki to listen on 0.0.0.0"
|
|
exit
|
|
;;
|
|
3)
|
|
msg_info "Configuring Loki to listen on ${LOCAL_IP}"
|
|
sed -i "s/http_listen_address:.*/http_listen_address: $LOCAL_IP/" /etc/loki/config.yml
|
|
sed -i 's/http_listen_port:.*/http_listen_port: 3100/' /etc/loki/config.yml
|
|
systemctl restart loki
|
|
msg_ok "Configured Loki to listen on ${LOCAL_IP}"
|
|
exit
|
|
;;
|
|
esac
|
|
exit 0
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed successfully!\n"
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
|
echo -e "${INFO}${YW} Access loki using the following URL:${CL}"
|
|
echo -e "${GATEWAY}${BGN}http://${IP}:3100${CL}\n"
|