From fbe2559e1aeacf933925d8257714f0c68bb41c9e Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Sat, 24 Jun 2023 00:48:10 +0000 Subject: [PATCH] Update --- CHANGELOG.md | 6 ++++++ README.md | 3 --- scripts/install_pve.sh | 14 +++++++------- 3 files changed, 13 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a36f1a..7c2cafe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # 更新日志 +2023.06.23 + +- 网关配置修改使用新结构,以便于适配大多数机器 +- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示 +- 解决了ifupdown2的安装问题,支持在更多商家的服务器上安装 + 2023.06.22 - PVE安装修复部分机器网络设置不立即重新加载的问题,增加网络设置备份 diff --git a/README.md b/README.md index 460e696..ef14b80 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,6 @@ 2023.06.24 -- 网关配置修改使用新结构,以便于适配大多数机器 -- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示 -- 解决了ifupdown2的安装问题,支持在更多商家的服务器上安装 - 修复部分机器是IPV6子网前缀识别失效的问题 [更新日志](CHANGELOG.md) diff --git a/scripts/install_pve.sh b/scripts/install_pve.sh index 8200a3a..7bf8ab5 100644 --- a/scripts/install_pve.sh +++ b/scripts/install_pve.sh @@ -368,18 +368,18 @@ fi apt-get install lsb-release -y version=$(lsb_release -cs) case $version in - stretch|buster|bullseye) + stretch|buster|bullseye|bookworm) repo_url="deb http://download.proxmox.com/debian/pve ${version} pve-no-subscription" if [[ -n "${CN}" ]]; then repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve ${version} pve-no-subscription" fi ;; - bookworm) - repo_url="deb http://download.proxmox.com/debian/pve ${version} pvetest" - if [[ -n "${CN}" ]]; then - repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve ${version} pvetest" - fi - ;; + # bookworm) + # repo_url="deb http://download.proxmox.com/debian/pve ${version} pvetest" + # if [[ -n "${CN}" ]]; then + # repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve ${version} pvetest" + # fi + # ;; *) _red "Error: Unsupported Debian version" reading "是否要继续安装(非Debian系会爆上面这个警告)?(回车则默认不继续安装) [y/n] " confirm