Add install and setup scripts for multiple Linux distros

Introduces container setup scripts and install scripts for AlmaLinux, CentOS Stream, Devuan, Fedora, Gentoo, openEuler, openSUSE, Rocky Linux, and updates Alpine install script. Adds corresponding JSON metadata files for each distribution in the frontend. These changes enable streamlined LXC container creation and installation for a wide range of Linux distributions.
This commit is contained in:
CanbiZ
2025-12-04 14:48:51 +01:00
parent 52cb37c46a
commit 235d217b36
28 changed files with 909 additions and 1 deletions

25
install/fedora-install.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2025 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE
# Source: https://fedoraproject.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD dnf install -y curl wget ca-certificates
msg_ok "Installed Dependencies"
motd_ssh
customize
msg_info "Cleaning up"
$STD dnf clean all
msg_ok "Cleaned"