This commit is contained in:
spiritlhl 2023-06-24 00:48:10 +00:00
parent 6dcda7fb1e
commit fbe2559e1a
3 changed files with 13 additions and 10 deletions

View file

@ -1,5 +1,11 @@
# 更新日志
2023.06.23
- 网关配置修改使用新结构,以便于适配大多数机器
- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示
- 解决了ifupdown2的安装问题支持在更多商家的服务器上安装
2023.06.22
- PVE安装修复部分机器网络设置不立即重新加载的问题增加网络设置备份

View file

@ -13,9 +13,6 @@
2023.06.24
- 网关配置修改使用新结构,以便于适配大多数机器
- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示
- 解决了ifupdown2的安装问题支持在更多商家的服务器上安装
- 修复部分机器是IPV6子网前缀识别失效的问题
[更新日志](CHANGELOG.md)

View file

@ -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