Skip to content

Commit bc31896

Browse files
authored
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
1 parent 213a606 commit bc31896

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

scripts/core/core.func

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,6 @@ cleanup_lxc() {
392392

393393
# Python pip
394394
if command -v pip &>/dev/null; then $STD pip cache purge || true; fi
395-
# Python uv
396-
if command -v uv &>/dev/null; then $STD uv cache clear || true; fi
397395
# Node.js npm
398396
if command -v npm &>/dev/null; then $STD npm cache clean --force || true; fi
399397
# Node.js yarn
@@ -410,7 +408,6 @@ cleanup_lxc() {
410408
if command -v composer &>/dev/null; then $STD composer clear-cache || true; fi
411409

412410
if command -v journalctl &>/dev/null; then
413-
$STD journalctl --rotate || true
414411
$STD journalctl --vacuum-time=10m || true
415412
fi
416413
msg_ok "Cleaned"

0 commit comments

Comments
 (0)