pve/install_pve7.2.sh

45 lines
1.5 KiB
Bash
Raw Normal View History

2023-02-13 17:22:41 +08:00
#!/bin/bash
#from https://github.com/spiritLHLS/pve
# pve 7.2
2023-02-13 17:22:41 +08:00
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
2023-02-13 17:30:33 +08:00
if ! command -v wget > /dev/null 2>&1; then
apt-get install -y wget
fi
2023-02-13 17:59:35 +08:00
if ! command -v curl > /dev/null 2>&1; then
apt-get install -y curl
fi
ip=$(curl -s ip.sb)
echo "$ip pve.proxmox.com pve" >> /etc/hosts
2023-02-13 17:52:49 +08:00
version=$(lsb_release -cs)
if [ "$version" == "jessie" ]; then
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve jessie pve-no-subscription"
elif [ "$version" == "stretch" ]; then
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve stretch pve-no-subscription"
elif [ "$version" == "buster" ]; then
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve buster pve-no-subscription"
elif [ "$version" == "bullseye" ]; then
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve bullseye pve-no-subscription"
wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
apt-key add /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
else
echo "Error: Unsupported Debian version"
exit 1
fi
2023-02-13 17:38:03 +08:00
# echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
2023-02-13 17:52:49 +08:00
echo "$repo_url" >> /etc/apt/sources.list
2023-02-13 17:59:35 +08:00
2023-02-13 17:22:41 +08:00
apt-get update
2023-02-13 17:30:33 +08:00
apt-get install debian-keyring debian-archive-keyring -y
2023-02-13 17:38:03 +08:00
apt-get autoremove
2023-02-13 17:30:33 +08:00
apt-get update
2023-02-13 17:22:41 +08:00
apt-get install proxmox-ve=7.2-1
rm /etc/apt/sources.list.d/pve-install-repo.list
2023-02-13 17:38:03 +08:00