Compare commits

..

2 Commits

Author SHA1 Message Date
Tobias
0dd96cd021 Create pip.conf if not present 2026-05-25 11:15:21 +02:00
Tobias
4415c626fa fix: pip config 2026-05-25 11:13:27 +02:00
2 changed files with 7 additions and 7 deletions

View File

@@ -469,12 +469,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-05-25
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- karakeep: fix: pip config [@CrazyWolf13](https://github.com/CrazyWolf13) ([#14703](https://github.com/community-scripts/ProxmoxVE/pull/14703))
### 💾 Core
- #### ✨ New Features

View File

@@ -811,7 +811,13 @@ update_tags() {
if [[ "$type" == "lxc" ]]; then
pct set "${vmid}" -tags "$(IFS=';'; echo "${next_tags[*]}")" &>/dev/null
else
qm set "${vmid}" --tags "$(IFS=';'; echo "${next_tags[*]}")" &>/dev/null
local vm_config="/etc/pve/qemu-server/${vmid}.conf"
if [[ -f "$vm_config" ]]; then
sed -i '/^tags:/d' "$vm_config"
if [[ ${#next_tags[@]} -gt 0 ]]; then
echo "tags: $(IFS=';'; echo "${next_tags[*]}")" >> "$vm_config"
fi
fi
fi
else
# Tags unchanged