From f105a0287926924619ea725aa549fdbd82bd0f3f Mon Sep 17 00:00:00 2001 From: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com> Date: Thu, 23 Apr 2026 09:33:16 -0400 Subject: [PATCH 1/2] Cleanup Chromium profiles --- NodeChrome/chrome-cleanup.sh | 1 + NodeChromium/chrome-cleanup.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NodeChrome/chrome-cleanup.sh b/NodeChrome/chrome-cleanup.sh index 31565c8cf1..cce51d4964 100755 --- a/NodeChrome/chrome-cleanup.sh +++ b/NodeChrome/chrome-cleanup.sh @@ -12,6 +12,7 @@ cleanup_stuck_chrome_processes() { cleanup_tmp_chrome_files() { echo -n "Deleting all Chrome files in /tmp... " find /tmp -name ".com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + + find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + echo "DONE." } diff --git a/NodeChromium/chrome-cleanup.sh b/NodeChromium/chrome-cleanup.sh index 5228b00d36..4349e720c2 100755 --- a/NodeChromium/chrome-cleanup.sh +++ b/NodeChromium/chrome-cleanup.sh @@ -10,8 +10,8 @@ cleanup_stuck_chrome_processes() { } cleanup_tmp_chrome_files() { - echo -n "Deleting all Chrome files in /tmp... " - find /tmp -name ".com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + + echo -n "Deleting all Chromium files in /tmp... " + find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + echo "DONE." } From 94149c3220672c5d5779232190959ad32b92fbfa Mon Sep 17 00:00:00 2001 From: Corey Goldberg <1113081+cgoldberg@users.noreply.github.com> Date: Thu, 23 Apr 2026 09:48:16 -0400 Subject: [PATCH 2/2] Widen regex search --- NodeChrome/chrome-cleanup.sh | 4 ++-- NodeChromium/chrome-cleanup.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NodeChrome/chrome-cleanup.sh b/NodeChrome/chrome-cleanup.sh index cce51d4964..10ee5d746b 100755 --- a/NodeChrome/chrome-cleanup.sh +++ b/NodeChrome/chrome-cleanup.sh @@ -11,8 +11,8 @@ cleanup_stuck_chrome_processes() { cleanup_tmp_chrome_files() { echo -n "Deleting all Chrome files in /tmp... " - find /tmp -name ".com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + - find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + + find /tmp -name "*com.google.Chrome.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + + find /tmp -name "*org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + echo "DONE." } diff --git a/NodeChromium/chrome-cleanup.sh b/NodeChromium/chrome-cleanup.sh index 4349e720c2..820061ed40 100755 --- a/NodeChromium/chrome-cleanup.sh +++ b/NodeChromium/chrome-cleanup.sh @@ -11,7 +11,7 @@ cleanup_stuck_chrome_processes() { cleanup_tmp_chrome_files() { echo -n "Deleting all Chromium files in /tmp... " - find /tmp -name ".org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + + find /tmp -name "*org.chromium.Chromium.*" -type d -mtime +${SE_BROWSER_LEFTOVERS_TEMPFILES_DAYS} -exec rm -rf "{}" + echo "DONE." }