Compare commits

..

1 Commits

Author SHA1 Message Date
MickLesk
117bdd8a0f fix(paperless-ngx): increase default RAM to 3GB
2GB can be insufficient for certain tasks causing swap to fill up
and tasks to fail or hang. Increase default to 3GB as a safer baseline.

Ref #13014
2026-03-17 20:45:14 +01:00
2 changed files with 1 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxV
APP="Paperless-ngx"
var_tags="${var_tags:-document;management}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_ram="${var_ram:-3072}"
var_disk="${var_disk:-12}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"

View File

@@ -79,11 +79,6 @@ function update_script() {
$STD apt update
$STD apt install -y plexmediaserver
msg_ok "Updated Plex Media Server"
msg_info "Restarting Plex Media Server"
systemctl restart plexmediaserver
msg_ok "Restarted Plex Media Server"
msg_ok "Updated successfully!"
exit
}