1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 16:49:41 +00:00

feat: harden user file handling and gate LaunchServices rebuild (#159)

- add ensure_user_dir/ensure_user_file helpers in lib/core/base.sh, including
  sudo-aware ownership correction under the invoking user’s home
- use the helpers across clean/optimize/purge/uninstall/whitelist to create
  cache and export files safely (no naked mkdir/touch), including log files and
  dry-run exports
- ensure purge stats/count files and update message caches are pre-created with
  safe permissions
- add Darwin version helpers and skip LaunchServices/dyld rebuild on macOS 15+,
  keeping the existing corruption protection for earlier versions
- guard brew cache timestamp writes and TCC permission flags with safe file
  creation to avoid root-owned artifacts
This commit is contained in:
Luke Bullimore
2025-12-26 02:54:56 +00:00
committed by GitHub
parent f838e9517d
commit 785032635a
13 changed files with 228 additions and 18 deletions

View File

@@ -17,9 +17,16 @@ flush_dns_cache() {
# Rebuild databases and flush caches
opt_system_maintenance() {
# DISABLED: Causes System Settings corruption - Issue #136
echo -e "${GRAY}${NC} LaunchServices rebuild disabled"
# run_with_timeout 10 /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user > /dev/null 2>&1 || true
local darwin_major
darwin_major=$(get_darwin_major)
if [[ "$darwin_major" -ge 24 ]]; then
echo -e "${GRAY}${NC} LaunchServices/dyld rebuild skipped on macOS 15+ (Darwin ${darwin_major})"
else
# DISABLED: Causes System Settings corruption - Issue #136
echo -e "${GRAY}${NC} LaunchServices rebuild disabled"
# run_with_timeout 10 /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user > /dev/null 2>&1 || true
fi
echo -e "${BLUE}${ICON_ARROW}${NC} Clearing DNS cache..."
if flush_dns_cache; then