mirror of
https://github.com/thelittlerocket/pve.git
synced 2025-01-31 10:09:03 +08:00
Update
This commit is contained in:
parent
6dcda7fb1e
commit
fbe2559e1a
3 changed files with 13 additions and 10 deletions
|
@ -1,5 +1,11 @@
|
|||
# 更新日志
|
||||
|
||||
2023.06.23
|
||||
|
||||
- 网关配置修改使用新结构,以便于适配大多数机器
|
||||
- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示
|
||||
- 解决了ifupdown2的安装问题,支持在更多商家的服务器上安装
|
||||
|
||||
2023.06.22
|
||||
|
||||
- PVE安装修复部分机器网络设置不立即重新加载的问题,增加网络设置备份
|
||||
|
|
|
@ -13,9 +13,6 @@
|
|||
|
||||
2023.06.24
|
||||
|
||||
- 网关配置修改使用新结构,以便于适配大多数机器
|
||||
- 调整安装的流程,升级软件包后需要重启一次系统,详见脚本的运行提示
|
||||
- 解决了ifupdown2的安装问题,支持在更多商家的服务器上安装
|
||||
- 修复部分机器是IPV6子网前缀识别失效的问题
|
||||
|
||||
[更新日志](CHANGELOG.md)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue