From bc31896586cf7734e94faec9ff8bb080135a95c8 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Mon, 24 Nov 2025 20:52:31 +0100 Subject: [PATCH] core: remove uv cache clean | remove log rotation (#340) * core: remove uv cache clean * Initialize functions on core.func source Added function initialization call when sourcing core.func --- scripts/core/core.func | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/core/core.func b/scripts/core/core.func index 01f1a1b..35e00a4 100644 --- a/scripts/core/core.func +++ b/scripts/core/core.func @@ -392,8 +392,6 @@ cleanup_lxc() { # Python pip if command -v pip &>/dev/null; then $STD pip cache purge || true; fi - # Python uv - if command -v uv &>/dev/null; then $STD uv cache clear || true; fi # Node.js npm if command -v npm &>/dev/null; then $STD npm cache clean --force || true; fi # Node.js yarn @@ -410,7 +408,6 @@ cleanup_lxc() { if command -v composer &>/dev/null; then $STD composer clear-cache || true; fi if command -v journalctl &>/dev/null; then - $STD journalctl --rotate || true $STD journalctl --vacuum-time=10m || true fi msg_ok "Cleaned"