2024-01-20 21:12:09 +05:30
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 tteck
|
2024-01-20 21:12:09 +05:30
|
|
|
# Author: tteck (tteckster)
|
2025-03-04 17:54:20 +01:00
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://redis.io/
|
2024-01-20 21:12:09 +05:30
|
|
|
|
2025-03-24 14:20:56 +01:00
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
2024-01-20 21:12:09 +05:30
|
|
|
color
|
|
|
|
|
verb_ip6
|
|
|
|
|
catch_errors
|
|
|
|
|
setting_up_container
|
|
|
|
|
network_check
|
|
|
|
|
update_os
|
|
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies"
|
2025-12-17 16:31:39 +01:00
|
|
|
$STD apt install -y apt-transport-https
|
2024-01-20 21:12:09 +05:30
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
2025-12-17 16:31:39 +01:00
|
|
|
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"
|
2025-10-15 22:58:08 +02:00
|
|
|
$STD apt install -y redis
|
2024-01-20 21:12:09 +05:30
|
|
|
sed -i 's/^bind .*/bind 0.0.0.0/' /etc/redis/redis.conf
|
2025-04-01 20:22:40 +02:00
|
|
|
systemctl enable -q --now redis-server
|
2025-12-17 16:31:39 +01:00
|
|
|
msg_ok "Setup Redis"
|
2024-01-20 21:12:09 +05:30
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
|
customize
|
2025-11-22 17:27:13 +01:00
|
|
|
cleanup_lxc
|