mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-05 20:23:54 +02:00
be84c3e1c1
Replaces the misc/build.func bootstrap with the two-root core loader. No other change: the engine contract (var_*, update_script, start, build_container, description) is identical on both engines.
20 lines
914 B
Bash
20 lines
914 B
Bash
#!/usr/bin/env bash
|
|
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
|
|
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
|
|
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: michelroegl-brunner | Co-Author: vhsdream
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
APP="MusicSeerr"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
|
|
msg_error "This script is no longer available."
|
|
msg_warn "MusicSeerr has been renamed to DroppedNeedle."
|
|
msg_warn "Run the DroppedNeedle script to migrate an existing installation:"
|
|
echo 'bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/droppedneedle.sh)"'
|
|
exit 1
|