mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-09 00:55:14 +02:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab549baa1f | |||
| 131545081c | |||
| f98a64b632 | |||
| 56129f7833 | |||
| 68af0f5b41 |
@@ -486,8 +486,13 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
|
|||||||
|
|
||||||
- #### 🐞 Bug Fixes
|
- #### 🐞 Bug Fixes
|
||||||
|
|
||||||
|
- homelable: preserve MCP server config across updates [@ferr079](https://github.com/ferr079) ([#14996](https://github.com/community-scripts/ProxmoxVE/pull/14996))
|
||||||
- changedetection: migrate Python install to uv venv [@ferr079](https://github.com/ferr079) ([#14995](https://github.com/community-scripts/ProxmoxVE/pull/14995))
|
- changedetection: migrate Python install to uv venv [@ferr079](https://github.com/ferr079) ([#14995](https://github.com/community-scripts/ProxmoxVE/pull/14995))
|
||||||
|
|
||||||
|
- #### 🔧 Refactor
|
||||||
|
|
||||||
|
- Update Flowwiseai to node 24 [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#14999](https://github.com/community-scripts/ProxmoxVE/pull/14999))
|
||||||
|
|
||||||
## 2026-06-07
|
## 2026-06-07
|
||||||
|
|
||||||
### 🚀 Updated Scripts
|
### 🚀 Updated Scripts
|
||||||
|
|||||||
@@ -38,6 +38,9 @@ function update_script() {
|
|||||||
msg_info "Backing up Configuration and Data"
|
msg_info "Backing up Configuration and Data"
|
||||||
cp /opt/homelable/backend/.env /opt/homelable.env.bak
|
cp /opt/homelable/backend/.env /opt/homelable.env.bak
|
||||||
cp -r /opt/homelable/data /opt/homelable_data_bak
|
cp -r /opt/homelable/data /opt/homelable_data_bak
|
||||||
|
if [[ -f /opt/homelable/mcp/.env ]]; then
|
||||||
|
cp -a /opt/homelable/mcp/.env /opt/homelable-mcp.env.bak
|
||||||
|
fi
|
||||||
msg_ok "Backed up Configuration and Data"
|
msg_ok "Backed up Configuration and Data"
|
||||||
|
|
||||||
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "homelable" "Pouzor/homelable" "tarball" "latest" "/opt/homelable"
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "homelable" "Pouzor/homelable" "tarball" "latest" "/opt/homelable"
|
||||||
@@ -61,6 +64,19 @@ function update_script() {
|
|||||||
rm -rf /opt/homelable_data_bak
|
rm -rf /opt/homelable_data_bak
|
||||||
msg_ok "Restored Configuration and Data"
|
msg_ok "Restored Configuration and Data"
|
||||||
|
|
||||||
|
if [[ -f /opt/homelable-mcp.env.bak ]]; then
|
||||||
|
msg_info "Restoring MCP Server"
|
||||||
|
cp -a /opt/homelable-mcp.env.bak /opt/homelable/mcp/.env
|
||||||
|
rm -f /opt/homelable-mcp.env.bak
|
||||||
|
MCP_OWNER=$(stat -c '%U' /opt/homelable/mcp/.env)
|
||||||
|
cd /opt/homelable/mcp
|
||||||
|
$STD uv venv --clear /opt/homelable/mcp/.venv
|
||||||
|
$STD uv pip install --python /opt/homelable/mcp/.venv/bin/python -r requirements.txt
|
||||||
|
chown -R "$MCP_OWNER":"$MCP_OWNER" /opt/homelable/mcp
|
||||||
|
systemctl restart homelable-mcp
|
||||||
|
msg_ok "Restored MCP Server"
|
||||||
|
fi
|
||||||
|
|
||||||
msg_info "Starting Service"
|
msg_info "Starting Service"
|
||||||
systemctl start homelable
|
systemctl start homelable
|
||||||
msg_ok "Started Service"
|
msg_ok "Started Service"
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ intel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
msg_info "Downloading the Intel Processor Microcode Package $microcode"
|
msg_info "Downloading the Intel Processor Microcode Package $microcode"
|
||||||
curl -fsSL "http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode" -o $(basename "http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode")
|
curl -fsSL --proto '=https' "https://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode" -o "$microcode"
|
||||||
msg_ok "Downloaded the Intel Processor Microcode Package $microcode"
|
msg_ok "Downloaded the Intel Processor Microcode Package $microcode"
|
||||||
|
|
||||||
msg_info "Installing $microcode (Patience)"
|
msg_info "Installing $microcode (Patience)"
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ intel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
msg_info "Downloading Intel processor microcode package $microcode"
|
msg_info "Downloading Intel processor microcode package $microcode"
|
||||||
curl -fsSL "http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode" -o $(basename "http://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode")
|
curl -fsSL --proto '=https' "https://ftp.debian.org/debian/pool/non-free-firmware/i/intel-microcode/$microcode" -o "$microcode"
|
||||||
msg_ok "Downloaded Intel processor microcode package $microcode"
|
msg_ok "Downloaded Intel processor microcode package $microcode"
|
||||||
|
|
||||||
msg_info "Installing $microcode (this might take a while)"
|
msg_info "Installing $microcode (this might take a while)"
|
||||||
|
|||||||
Reference in New Issue
Block a user