mirror of
https://github.com/thelittlerocket/pve.git
synced 2025-01-31 10:09:03 +08:00
2023.08.02
This commit is contained in:
parent
242a8cdb64
commit
7dc4ef613f
4 changed files with 7 additions and 4 deletions
|
@ -16,7 +16,7 @@
|
|||
2023.08.02
|
||||
|
||||
- 更新KVM虚拟机镜像源,支持更多系统
|
||||
- 修复部分虚拟开设时自定义硬盘大小失败的问题
|
||||
- 修复部分虚拟机开设时自定义硬盘大小失败的问题,增加设置间隔,避免硬盘IO爆炸
|
||||
|
||||
[更新日志](CHANGELOG.md)
|
||||
|
||||
|
|
|
@ -107,6 +107,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
"opensuse-leap-15"
|
||||
"alpinelinux_edge"
|
||||
"alpinelinux_stable"
|
||||
"rockylinux9"
|
||||
)
|
||||
for sys in ${systems[@]}; do
|
||||
if [[ "$system" == "$sys" ]]; then
|
||||
|
@ -122,7 +123,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
if [ ! -f "$file_path" ]; then
|
||||
check_cdn_file
|
||||
ver=""
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable")
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable" "rockylinux9")
|
||||
v11=("ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
v10=("almalinux8" "archlinux" "fedora33" "opensuse-leap-15" "ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
ver_list=(v20 v11 v10)
|
||||
|
|
|
@ -104,6 +104,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
"opensuse-leap-15"
|
||||
"alpinelinux_edge"
|
||||
"alpinelinux_stable"
|
||||
"rockylinux9"
|
||||
)
|
||||
for sys in ${systems[@]}; do
|
||||
if [[ "$system" == "$sys" ]]; then
|
||||
|
@ -119,7 +120,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
if [ ! -f "$file_path" ]; then
|
||||
check_cdn_file
|
||||
ver=""
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable")
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable" "rockylinux9")
|
||||
v11=("ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
v10=("almalinux8" "archlinux" "fedora33" "opensuse-leap-15" "ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
ver_list=(v20 v11 v10)
|
||||
|
|
|
@ -132,6 +132,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
"opensuse-leap-15"
|
||||
"alpinelinux_edge"
|
||||
"alpinelinux_stable"
|
||||
"rockylinux9"
|
||||
)
|
||||
for sys in ${systems[@]}; do
|
||||
if [[ "$system" == "$sys" ]]; then
|
||||
|
@ -147,7 +148,7 @@ if [ "$system_arch" = "x86" ]; then
|
|||
if [ ! -f "$file_path" ]; then
|
||||
check_cdn_file
|
||||
ver=""
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable")
|
||||
v20=("fedora34" "almalinux8" "debian11" "debian12" "ubuntu18" "ubuntu20" "ubuntu22" "centos7" "alpinelinux_edge" "alpinelinux_stable" "rockylinux9")
|
||||
v11=("ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
v10=("almalinux8" "archlinux" "fedora33" "opensuse-leap-15" "ubuntu18" "ubuntu20" "ubuntu22" "debian10" "debian11")
|
||||
ver_list=(v20 v11 v10)
|
||||
|
|
Loading…
Reference in a new issue