Compare commits

...

5 Commits

Author SHA1 Message Date
MickLesk
4e0dfab596 PBS4-Upgrade: update current PBS3 packages before switching to Trixie repos 2026-05-30 21:41:16 +02:00
community-scripts-pr-app[bot]
9c06910526 Update CHANGELOG.md (#14803)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-29 21:49:58 +00:00
Slaviša Arežina
d3feeb4900 small fixes (#14801) 2026-05-29 23:49:34 +02:00
community-scripts-pr-app[bot]
4926d426a8 Update CHANGELOG.md (#14799)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-05-29 16:07:55 +00:00
CanbiZ (MickLesk)
7fea6cc9eb karakeep: add more hdd space (#14797) 2026-05-29 18:07:14 +02:00
5 changed files with 21 additions and 3 deletions

View File

@@ -479,8 +479,13 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### 🐞 Bug Fixes
- Fix lobehub docker path [@dannyyy](https://github.com/dannyyy) ([#14793](https://github.com/community-scripts/ProxmoxVE/pull/14793))
- karakeep: add more hdd space [@MickLesk](https://github.com/MickLesk) ([#14797](https://github.com/community-scripts/ProxmoxVE/pull/14797))
- Grist: Revert installation of EE [@tremor021](https://github.com/tremor021) ([#14784](https://github.com/community-scripts/ProxmoxVE/pull/14784))
- #### 🔧 Refactor
- Sure: Remove `$STD` for `systemctl enable -q` [@tremor021](https://github.com/tremor021) ([#14801](https://github.com/community-scripts/ProxmoxVE/pull/14801))
## 2026-05-28
### 🚀 Updated Scripts

View File

@@ -9,7 +9,7 @@ APP="karakeep"
var_tags="${var_tags:-bookmark}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-4096}"
var_disk="${var_disk:-10}"
var_disk="${var_disk:-15}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-no}"

View File

@@ -81,7 +81,7 @@ EOF
msg_ok "Updated Sure"
msg_info "Starting Services"
$STD systemctl start sure sure-worker
systemctl start sure sure-worker
msg_ok "Started Services"
msg_ok "Updated successfully!"
fi

View File

@@ -103,7 +103,7 @@ StandardError=journal
[Install]
WantedBy=multi-user.target
EOF
$STD systemctl enable -q --now sure sure-worker
systemctl enable -q --now sure sure-worker
msg_ok "Created Services"
motd_ssh

View File

@@ -50,6 +50,19 @@ start_routines() {
no) msg_error "Selected no to Backup" ;;
esac
# --- Update Current PBS 3 System ---
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PBS 3 UPDATE" --menu \
"\nUpdate current PBS 3 (Bookworm) packages before upgrade?" 14 58 2 "yes" " " "no" " " 3>&2 2>&1 1>&3)
case $CHOICE in
yes)
msg_info "Updating current PBS 3 packages"
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -y dist-upgrade
msg_ok "Updated current PBS 3 packages"
;;
no) msg_error "Skipped updating current packages" ;;
esac
# --- Debian 13 Sources ---
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "PBS 4 SOURCES" --menu \
"Switch to Debian 13 (Trixie) sources for PBS 4?" 14 58 2 "yes" " " "no" " " 3>&2 2>&1 1>&3)