mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-08-25 05:45:45 +02:00
07b8ff91b8
First of the alpine pairs moved over. The two scripts become one with a section per OS, the same shape as valkey in ProxmoxVED: setup_deb_based/setup_alpine in the install script, update_deb_based/update_alpine in the ct script, dispatched by run_os_setup and run_os_update. The bootstrap now points at community-scripts/core rather than this repo's misc/build.func, which is where those two dispatchers live. Nothing in misc/ is touched. _CS_DEFAULT_URL has to be set before sourcing: core resolves the scripts root from the calling script's checkout, and when there is no checkout -- the usual `bash -c "$(curl ...)"` -- it falls back to ProxmoxVED. A ProxmoxVE script would then fetch its own -install.sh from the wrong repository. Setting only the fallback keeps a local checkout and a fork resolving through their own git remote, which is the point of that mechanism. Verified: both files parse, the bootstrap resolves the scripts root to ProxmoxVE and the engine to core, and the sections are the only functions defined. ct/alpine-redis.sh and install/alpine-redis-install.sh are deliberately left in place. They still run against misc/build.func, so bookmarked URLs keep working; retiring them is a separate decision with user-facing consequences.
50 lines
1.1 KiB
Bash
50 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 tteck
|
|
# Author: tteck (tteckster) | MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://redis.io/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
setup_deb_based() {
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y apt-transport-https
|
|
msg_ok "Installed Dependencies"
|
|
|
|
msg_info "Setting up Redis Repository"
|
|
setup_deb822_repo \
|
|
"redis" \
|
|
"https://packages.redis.io/gpg" \
|
|
"https://packages.redis.io/deb" \
|
|
"trixie"
|
|
msg_ok "Setup Redis Repository"
|
|
|
|
msg_info "Setting up Redis"
|
|
$STD apt install -y redis
|
|
sed -i 's/^bind .*/bind 0.0.0.0/' /etc/redis/redis.conf
|
|
systemctl enable -q --now redis-server
|
|
msg_ok "Setup Redis"
|
|
}
|
|
|
|
setup_alpine() {
|
|
msg_info "Installing Redis"
|
|
$STD apk add redis
|
|
$STD sed -i 's/^bind .*/bind 0.0.0.0/' /etc/redis.conf
|
|
$STD rc-update add redis default
|
|
$STD rc-service redis start
|
|
msg_ok "Installed Redis"
|
|
}
|
|
|
|
run_os_setup
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|