mirror of
https://github.com/thelittlerocket/pve.git
synced 2025-03-03 17:27:17 +08:00
2023.07.31
This commit is contained in:
parent
86527a825c
commit
687b7c4511
2 changed files with 8 additions and 2 deletions
|
@ -16,6 +16,8 @@
|
|||
2023.07.31
|
||||
|
||||
- 尝试修复部分机器重启机器后失联的情况
|
||||
- 增加自动时间校准功能
|
||||
- 加速系统熵计算
|
||||
|
||||
[更新日志](CHANGELOG.md)
|
||||
|
||||
|
|
|
@ -858,8 +858,12 @@ elif [ "$system_arch" = "arch" ]; then
|
|||
fi
|
||||
|
||||
# 备份网络设置
|
||||
cp /etc/network/interfaces /etc/network/interfaces.bak
|
||||
cp /etc/network/interfaces.new /etc/network/interfaces.new.bak
|
||||
if [ -f /etc/network/interfaces ]; then
|
||||
cp /etc/network/interfaces /etc/network/interfaces.bak
|
||||
fi
|
||||
if [ -f /etc/network/interfaces.new ]; then
|
||||
cp /etc/network/interfaces.new /etc/network/interfaces.new.bak
|
||||
fi
|
||||
rebuild_interfaces
|
||||
|
||||
# 下载pve
|
||||
|
|
Loading…
Reference in a new issue