Update Fleet-maintained apps - #49869
Conversation
Generated automatically with cmd/maintained-apps.
Script Diff Resultsee/maintained-apps/outputs/beeper/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/chatgpt/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/freecad/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/kiro-cli/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/ollama/darwin.json=== Install Script (no changes) ===
=== Uninstall // bf40e2d5 -> ecec947d ===
--- /tmp/old.d2uJBW 2026-07-24 00:23:43.735605315 +0000
+++ /tmp/new.s61ou9 2026-07-24 00:23:43.735605315 +0000
@@ -5,6 +5,116 @@
LOGGED_IN_USER=$(scutil <<< "show State:/Users/ConsoleUser" | awk '/Name :/ { print $3 }')
# functions
+quit_application() {
+ local bundle_id="$1"
+ local timeout_duration=10
+
+ # check if the application is running
+ local app_running
+ app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null)
+ if [[ "$app_running" != "true" ]]; then
+ return
+ fi
+
+ local console_user
+ console_user=$(stat -f "%Su" /dev/console)
+ if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then
+ echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'."
+ return
+ fi
+
+ echo "Quitting application '$bundle_id'..."
+
+ # try to quit the application within the timeout period
+ local quit_success=false
+ SECONDS=0
+ while (( SECONDS < timeout_duration )); do
+ if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then
+ if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then
+ echo "Application '$bundle_id' quit successfully."
+ quit_success=true
+ break
+ fi
+ fi
+ sleep 1
+ done
+
+ if [[ "$quit_success" = false ]]; then
+ echo "Application '$bundle_id' did not quit."
+ fi
+}
+
+
+remove_launchctl_service() {
+ local service="$1"
+ local booleans=("true" "false")
+ local plist_status
+ local paths
+ local should_sudo
+
+ echo "Removing launchctl service ${service}"
+
+ # A wildcard label can't be used with launchctl or as a plist name, so expand
+ # it to the labels of currently loaded services that match the pattern.
+ local services=("$service")
+ if [[ "$service" == *"*"* ]]; then
+ local regex
+ # Escape regex metacharacters, turn '*' into '.*', and anchor the pattern so
+ # it matches a full label rather than a substring.
+ regex=$(printf '%s' "$service" | sed -e 's/[][(){}.^$+?|\\]/\\&/g' -e 's/\*/.*/g')
+ regex="^${regex}$"
+ services=()
+ local id
+ # Match every loaded job by label regardless of PID; launchctl list reports
+ # loaded-but-not-running jobs with a "-" in the PID column.
+ while read -r _ _ id; do
+ [[ "$id" =~ $regex ]] && services+=("$id")
+ done < <(launchctl list 2>/dev/null | tail -n +2)
+ if [[ ${#services[@]} -eq 0 ]]; then
+ echo "No loaded launchctl service matches ${service}"
+ return
+ fi
+ fi
+
+ local service_label
+ for service_label in "${services[@]}"; do
+ for should_sudo in "${booleans[@]}"; do
+ plist_status=$(launchctl list "${service_label}" 2>/dev/null)
+
+ if [[ $plist_status == \{* ]]; then
+ if [[ $should_sudo == "true" ]]; then
+ sudo launchctl remove "${service_label}"
+ else
+ launchctl remove "${service_label}"
+ fi
+ sleep 1
+ fi
+
+ paths=(
+ "/Library/LaunchAgents/${service_label}.plist"
+ "/Library/LaunchDaemons/${service_label}.plist"
+ )
+
+ # if not using sudo, prepend the home directory to the paths
+ if [[ $should_sudo == "false" ]]; then
+ for i in "${!paths[@]}"; do
+ paths[i]="${HOME}${paths[i]}"
+ done
+ fi
+
+ for path in "${paths[@]}"; do
+ if [[ -e "$path" ]]; then
+ if [[ $should_sudo == "true" ]]; then
+ sudo rm -f -- "$path"
+ else
+ rm -f -- "$path"
+ fi
+ fi
+ done
+ done
+ done
+}
+
trash() {
local logged_in_user="$1"
local target_file="$2"
@@ -52,6 +162,8 @@
fi
}
+remove_launchctl_service 'com.ollama.ollama'
+quit_application 'com.electron.ollama'
sudo rm -rf "$APPDIR/Ollama.app"
trash $LOGGED_IN_USER '~/.ollama'
trash $LOGGED_IN_USER '~/Library/Application Support/Ollama'ee/maintained-apps/outputs/pastebot/darwin.json=== Install Script (no changes) ===
=== Uninstall // c470fb06 -> fdce5819 ===
--- /tmp/old.THhrbS 2026-07-24 00:23:43.793602671 +0000
+++ /tmp/new.3ELw8p 2026-07-24 00:23:43.793602671 +0000
@@ -2,7 +2,101 @@
# variables
APPDIR="/Applications/"
+LOGGED_IN_USER=$(scutil <<< "show State:/Users/ConsoleUser" | awk '/Name :/ { print $3 }')
+# functions
+quit_application() {
+ local bundle_id="$1"
+ local timeout_duration=10
+
+ # check if the application is running
+ local app_running
+ app_running=$(osascript -e "application id \"$bundle_id\" is running" 2>/dev/null)
+ if [[ "$app_running" != "true" ]]; then
+ return
+ fi
+
+ local console_user
+ console_user=$(stat -f "%Su" /dev/console)
+ if [[ -z "$console_user" || "$console_user" == "root" || "$console_user" == "loginwindow" ]]; then
+ echo "Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'."
+ return
+ fi
+
+ echo "Quitting application '$bundle_id'..."
+
+ # try to quit the application within the timeout period
+ local quit_success=false
+ SECONDS=0
+ while (( SECONDS < timeout_duration )); do
+ if osascript -e "tell application id \"$bundle_id\" to quit" >/dev/null 2>&1; then
+ if ! pgrep -f "$bundle_id" >/dev/null 2>&1; then
+ echo "Application '$bundle_id' quit successfully."
+ quit_success=true
+ break
+ fi
+ fi
+ sleep 1
+ done
+
+ if [[ "$quit_success" = false ]]; then
+ echo "Application '$bundle_id' did not quit."
+ fi
+}
+
+
+trash() {
+ local logged_in_user="$1"
+ local target_file="$2"
+ local timestamp="$(date +%Y-%m-%d-%s)"
+ local rand="$(jot -r 1 0 99999)"
+
+ # replace ~ with /Users/$logged_in_user
+ if [[ "$target_file" == ~* ]]; then
+ target_file="/Users/$logged_in_user${target_file:1}"
+ fi
+
+ local trash="/Users/$logged_in_user/.Trash"
+
+ # If the target contains glob characters, expand it and move each match.
+ if [[ "$target_file" == *[*?[]* ]]; then
+ local file file_name
+ local matched=false
+ local i=0
+ # compgen -G expands the (quoted) pattern itself, so paths containing
+ # spaces glob correctly; reading line by line keeps each match intact.
+ while IFS= read -r file; do
+ [[ -n "$file" ]] || continue
+ [[ -e "$file" || -L "$file" ]] || continue
+ matched=true
+ i=$((i + 1))
+ file_name="$(basename "$file")"
+ echo "removing $file."
+ # The per-match counter keeps matches that share a basename from
+ # overwriting each other in the trash.
+ mv -f "$file" "$trash/${file_name}_${timestamp}_${rand}_${i}"
+ done < <(compgen -G "$target_file" 2>/dev/null)
+ if [[ "$matched" == false ]]; then
+ echo "$target_file doesn't exist."
+ fi
+ return
+ fi
+
+ local file_name="$(basename "${target_file}")"
+
+ if [[ -e "$target_file" ]]; then
+ echo "removing $target_file."
+ mv -f "$target_file" "$trash/${file_name}_${timestamp}_${rand}"
+ else
+ echo "$target_file doesn't exist."
+ fi
+}
+
+quit_application 'com.tapbots.Pastebot2Mac'
sudo rm -rf "$APPDIR/Pastebot.app"
-sudo rm -rf '~/Library/Containers/com.tapbots.Pastebot2Mac'
-sudo rm -rf '~/Library/Preferences/com.tapbots.Pastebot2Mac.plist'
+trash $LOGGED_IN_USER '~/Library/Application Scripts/9JTH7AWHE6.com.tapbots.Pastebot2Mac'
+trash $LOGGED_IN_USER '~/Library/Application Scripts/com.tapbots.Pastebot2Mac*'
+trash $LOGGED_IN_USER '~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.tapbots.pastebot2mac.launchhelper.sfl*'
+trash $LOGGED_IN_USER '~/Library/Containers/com.tapbots.Pastebot2Mac*'
+trash $LOGGED_IN_USER '~/Library/Group Containers/9JTH7AWHE6.com.tapbots.Pastebot2Mac'
+trash $LOGGED_IN_USER '~/Library/Preferences/com.tapbots.Pastebot2Mac.plist'ee/maintained-apps/outputs/remote-desktop-manager/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/superhuman/darwin.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) ===ee/maintained-apps/outputs/thunderbird/windows.json=== Install Script (no changes) ===
=== Uninstall Script (no changes) === |
WalkthroughUpdated nine maintained-app manifests to newer application releases, synchronizing versions, patch detection queries, installer URLs, and SHA-256 checksums. Ollama and Pastebot now reference expanded macOS uninstall scripts that quit running applications, remove application artifacts, and clean up related user files. Possibly related PRs
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@ee/maintained-apps/outputs/ollama/darwin.json`:
- Line 20: Update remove_launchctl_service to resolve the console user’s UID and
home directory, then run launchctl queries/removals against that user’s
gui/<uid> domain instead of the current process context. Use the console user’s
home when constructing per-user LaunchAgents paths, while preserving sudo
handling for system services, and remove any matching plist after unloading the
service.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: d515cfb7-0593-4798-8b18-2af545263ed4
📒 Files selected for processing (9)
ee/maintained-apps/outputs/beeper/darwin.jsonee/maintained-apps/outputs/chatgpt/darwin.jsonee/maintained-apps/outputs/freecad/windows.jsonee/maintained-apps/outputs/kiro-cli/darwin.jsonee/maintained-apps/outputs/ollama/darwin.jsonee/maintained-apps/outputs/pastebot/darwin.jsonee/maintained-apps/outputs/remote-desktop-manager/darwin.jsonee/maintained-apps/outputs/superhuman/darwin.jsonee/maintained-apps/outputs/thunderbird/windows.json
| "refs": { | ||
| "9f174559": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nTMPDIR=$(dirname \"$(realpath \"$INSTALLER_PATH\")\")\n# functions\n\nquit_and_track_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n eval \"export $var_name=0\"\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n eval \"export $var_name=0\"\n return\n fi\n\n # App was running, mark it for relaunch\n eval \"export $var_name=1\"\n echo \"Application '$bundle_id' was running; will relaunch after installation.\"\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n\nrelaunch_application() {\n local bundle_id=\"$1\"\n local var_name=\"APP_WAS_RUNNING_$(echo \"$bundle_id\" | tr '.-' '__')\"\n local was_running\n\n # Check if the app was running before installation\n eval \"was_running=\\$$var_name\"\n if [[ \"$was_running\" != \"1\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping relaunching application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Relaunching application '$bundle_id'...\"\n\n # Launch the app in the logged-in user's GUI session. Apps launched by root\n # won't register with the user's Dock/GUI, so run 'open' as the console user.\n # Use 'launchctl asuser' to bootstrap into the console user's Mach namespace\n # and GUI session — 'sudo -u' alone doesn't do this, which can cause\n # LSOpenURLsWithRole() failures even when 'open' exits 0.\n local open_status=0\n if [[ $EUID -eq 0 ]]; then\n local console_uid\n console_uid=$(id -u \"$console_user\")\n /bin/launchctl asuser \"$console_uid\" sudo -u \"$console_user\" open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n else\n open -b \"$bundle_id\" >/dev/null 2>&1 || open_status=$?\n fi\n\n if [[ $open_status -eq 0 ]]; then\n echo \"Application '$bundle_id' relaunched successfully.\"\n else\n echo \"Failed to relaunch application '$bundle_id'.\"\n fi\n}\n\n\n# extract contents\nunzip \"$INSTALLER_PATH\" -d \"$TMPDIR\"\n# copy to the applications folder\nquit_and_track_application 'com.electron.ollama'\nif [ -d \"$APPDIR/Ollama.app\" ]; then\n\tsudo mv \"$APPDIR/Ollama.app\" \"$TMPDIR/Ollama.app.bkp\"\nfi\nsudo cp -R \"$TMPDIR/Ollama.app\" \"$APPDIR\"\nrelaunch_application 'com.electron.ollama'\n", | ||
| "bf40e2d5": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nLOGGED_IN_USER=$(scutil <<< \"show State:/Users/ConsoleUser\" | awk '/Name :/ { print $3 }')\n# functions\n\ntrash() {\n local logged_in_user=\"$1\"\n local target_file=\"$2\"\n local timestamp=\"$(date +%Y-%m-%d-%s)\"\n local rand=\"$(jot -r 1 0 99999)\"\n\n # replace ~ with /Users/$logged_in_user\n if [[ \"$target_file\" == ~* ]]; then\n target_file=\"/Users/$logged_in_user${target_file:1}\"\n fi\n\n local trash=\"/Users/$logged_in_user/.Trash\"\n\n # If the target contains glob characters, expand it and move each match.\n if [[ \"$target_file\" == *[*?[]* ]]; then\n local file file_name\n local matched=false\n local i=0\n # compgen -G expands the (quoted) pattern itself, so paths containing\n # spaces glob correctly; reading line by line keeps each match intact.\n while IFS= read -r file; do\n [[ -n \"$file\" ]] || continue\n [[ -e \"$file\" || -L \"$file\" ]] || continue\n matched=true\n i=$((i + 1))\n file_name=\"$(basename \"$file\")\"\n echo \"removing $file.\"\n # The per-match counter keeps matches that share a basename from\n # overwriting each other in the trash.\n mv -f \"$file\" \"$trash/${file_name}_${timestamp}_${rand}_${i}\"\n done < <(compgen -G \"$target_file\" 2>/dev/null)\n if [[ \"$matched\" == false ]]; then\n echo \"$target_file doesn't exist.\"\n fi\n return\n fi\n\n local file_name=\"$(basename \"${target_file}\")\"\n\n if [[ -e \"$target_file\" ]]; then\n echo \"removing $target_file.\"\n mv -f \"$target_file\" \"$trash/${file_name}_${timestamp}_${rand}\"\n else\n echo \"$target_file doesn't exist.\"\n fi\n}\n\nsudo rm -rf \"$APPDIR/Ollama.app\"\ntrash $LOGGED_IN_USER '~/.ollama'\ntrash $LOGGED_IN_USER '~/Library/Application Support/Ollama'\ntrash $LOGGED_IN_USER '~/Library/Caches/com.electron.ollama'\ntrash $LOGGED_IN_USER '~/Library/Preferences/com.electron.ollama.plist'\ntrash $LOGGED_IN_USER '~/Library/Saved Application State/com.electron.ollama.savedState'\ntrash $LOGGED_IN_USER '~/Library/Webkit/com.electron.ollama'\n" | ||
| "ecec947d": "#!/bin/bash\n\n# variables\nAPPDIR=\"/Applications/\"\nLOGGED_IN_USER=$(scutil <<< \"show State:/Users/ConsoleUser\" | awk '/Name :/ { print $3 }')\n# functions\n\nquit_application() {\n local bundle_id=\"$1\"\n local timeout_duration=10\n\n # check if the application is running\n local app_running\n app_running=$(osascript -e \"application id \\\"$bundle_id\\\" is running\" 2>/dev/null)\n if [[ \"$app_running\" != \"true\" ]]; then\n return\n fi\n\n local console_user\n console_user=$(stat -f \"%Su\" /dev/console)\n if [[ -z \"$console_user\" || \"$console_user\" == \"root\" || \"$console_user\" == \"loginwindow\" ]]; then\n echo \"Not logged into a non-root GUI; skipping quitting application ID '$bundle_id'.\"\n return\n fi\n\n echo \"Quitting application '$bundle_id'...\"\n\n # try to quit the application within the timeout period\n local quit_success=false\n SECONDS=0\n while (( SECONDS < timeout_duration )); do\n if osascript -e \"tell application id \\\"$bundle_id\\\" to quit\" >/dev/null 2>&1; then\n if ! pgrep -f \"$bundle_id\" >/dev/null 2>&1; then\n echo \"Application '$bundle_id' quit successfully.\"\n quit_success=true\n break\n fi\n fi\n sleep 1\n done\n\n if [[ \"$quit_success\" = false ]]; then\n echo \"Application '$bundle_id' did not quit.\"\n fi\n}\n\n\nremove_launchctl_service() {\n local service=\"$1\"\n local booleans=(\"true\" \"false\")\n local plist_status\n local paths\n local should_sudo\n\n echo \"Removing launchctl service ${service}\"\n\n # A wildcard label can't be used with launchctl or as a plist name, so expand\n # it to the labels of currently loaded services that match the pattern.\n local services=(\"$service\")\n if [[ \"$service\" == *\"*\"* ]]; then\n local regex\n # Escape regex metacharacters, turn '*' into '.*', and anchor the pattern so\n # it matches a full label rather than a substring.\n regex=$(printf '%s' \"$service\" | sed -e 's/[][(){}.^$+?|\\\\]/\\\\&/g' -e 's/\\*/.*/g')\n regex=\"^${regex}$\"\n services=()\n local id\n # Match every loaded job by label regardless of PID; launchctl list reports\n # loaded-but-not-running jobs with a \"-\" in the PID column.\n while read -r _ _ id; do\n [[ \"$id\" =~ $regex ]] && services+=(\"$id\")\n done < <(launchctl list 2>/dev/null | tail -n +2)\n if [[ ${#services[@]} -eq 0 ]]; then\n echo \"No loaded launchctl service matches ${service}\"\n return\n fi\n fi\n\n local service_label\n for service_label in \"${services[@]}\"; do\n for should_sudo in \"${booleans[@]}\"; do\n plist_status=$(launchctl list \"${service_label}\" 2>/dev/null)\n\n if [[ $plist_status == \\{* ]]; then\n if [[ $should_sudo == \"true\" ]]; then\n sudo launchctl remove \"${service_label}\"\n else\n launchctl remove \"${service_label}\"\n fi\n sleep 1\n fi\n\n paths=(\n \"/Library/LaunchAgents/${service_label}.plist\"\n \"/Library/LaunchDaemons/${service_label}.plist\"\n )\n\n # if not using sudo, prepend the home directory to the paths\n if [[ $should_sudo == \"false\" ]]; then\n for i in \"${!paths[@]}\"; do\n paths[i]=\"${HOME}${paths[i]}\"\n done\n fi\n\n for path in \"${paths[@]}\"; do\n if [[ -e \"$path\" ]]; then\n if [[ $should_sudo == \"true\" ]]; then\n sudo rm -f -- \"$path\"\n else\n rm -f -- \"$path\"\n fi\n fi\n done\n done\n done\n}\n\ntrash() {\n local logged_in_user=\"$1\"\n local target_file=\"$2\"\n local timestamp=\"$(date +%Y-%m-%d-%s)\"\n local rand=\"$(jot -r 1 0 99999)\"\n\n # replace ~ with /Users/$logged_in_user\n if [[ \"$target_file\" == ~* ]]; then\n target_file=\"/Users/$logged_in_user${target_file:1}\"\n fi\n\n local trash=\"/Users/$logged_in_user/.Trash\"\n\n # If the target contains glob characters, expand it and move each match.\n if [[ \"$target_file\" == *[*?[]* ]]; then\n local file file_name\n local matched=false\n local i=0\n # compgen -G expands the (quoted) pattern itself, so paths containing\n # spaces glob correctly; reading line by line keeps each match intact.\n while IFS= read -r file; do\n [[ -n \"$file\" ]] || continue\n [[ -e \"$file\" || -L \"$file\" ]] || continue\n matched=true\n i=$((i + 1))\n file_name=\"$(basename \"$file\")\"\n echo \"removing $file.\"\n # The per-match counter keeps matches that share a basename from\n # overwriting each other in the trash.\n mv -f \"$file\" \"$trash/${file_name}_${timestamp}_${rand}_${i}\"\n done < <(compgen -G \"$target_file\" 2>/dev/null)\n if [[ \"$matched\" == false ]]; then\n echo \"$target_file doesn't exist.\"\n fi\n return\n fi\n\n local file_name=\"$(basename \"${target_file}\")\"\n\n if [[ -e \"$target_file\" ]]; then\n echo \"removing $target_file.\"\n mv -f \"$target_file\" \"$trash/${file_name}_${timestamp}_${rand}\"\n else\n echo \"$target_file doesn't exist.\"\n fi\n}\n\nremove_launchctl_service 'com.ollama.ollama'\nquit_application 'com.electron.ollama'\nsudo rm -rf \"$APPDIR/Ollama.app\"\ntrash $LOGGED_IN_USER '~/.ollama'\ntrash $LOGGED_IN_USER '~/Library/Application Support/Ollama'\ntrash $LOGGED_IN_USER '~/Library/Caches/com.electron.ollama'\ntrash $LOGGED_IN_USER '~/Library/Preferences/com.electron.ollama.plist'\ntrash $LOGGED_IN_USER '~/Library/Saved Application State/com.electron.ollama.savedState'\ntrash $LOGGED_IN_USER '~/Library/Webkit/com.electron.ollama'\n" |
There was a problem hiding this comment.
🩺 Stability & Availability | 🟠 Major | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
echo "== file excerpt =="
fd -a 'darwin\.json$' ee/maintained-apps/outputs/ollama 2>/dev/null | sed 's#^\./##'
if [ -f "ee/maintained-apps/outputs/ollama/darwin.json" ]; then
sed -n '1,120p' "ee/maintained-apps/outputs/ollama/darwin.json"
fi
echo "== nearby maintained-app outputs/ollama =="
fd -a . ee/maintained-apps/outputs/ollama 2>/dev/null | sed 's#^\./##' | head -50
echo "== references to Ollama uninstall scripts / launchd removal =="
rg -n "remove_launchctl_service|com\.ollama\.ollama|OLLAMA|i=0|trash\\$LOGGED_IN_USER|LOGGED_IN_USER" ee || trueRepository: fleetdm/fleet
Length of output: 10454
🏁 Script executed:
#!/bin/bash
set -u
echo "== exact Ollama uninstall/remove_launchctl_service occurrences =="
rg -n "remove_launchctl_service|com\.ollama\.ollama|launchctl asuser|asuser|\/Users\/\$LOGGED_IN_USER|~/Library/LaunchAgents|Library/LaunchAgents" ee || true
echo "== git log/status summary =="
git status --short || true
git log --oneline -20 || true
echo "== compare uninstall function behavior with console user vs root context =="
python3 - <<'PY'
from pathlib import Path
import re
p = Path('ee/maintained-apps/outputs/ollama/darwin.json')
text = p.read_text().splitlines()[37:228]
s = '\n'.join(text)
for name in ['LOGGED_IN_USER=$(scutil <<< "show State:/Users/ConsoleUser" | awk "/Name :/ { print $3 }")','remove_launchctl_service','launchctl list','sudo launchctl remove','launchctl remove','/Users/$LOGGED_IN_USER','~/Library/LaunchAgents','/Library/LaunchAgents','/Library/LaunchDaemons']:
print(f"{name!r}: ", 'YES' if name in s else 'NO')
print()
print('contains launchctl asuser:', 'asuser' in s)
print('matches /Users/$LOGGED_IN_USER in trash paths:', bool(re.search(r'"/Users/\$LOGGED_IN_USER', s)))
PYRepository: fleetdm/fleet
Length of output: 2374
🌐 Web query:
Apple launchmacos launchctl remove user launch agent session launchd domains asuser
💡 Result:
To remove or stop a user launch agent in modern macOS, the recommended approach is to use the launchctl bootout subcommand rather than the legacy remove command [1][2]. Because launch agents run within specific user-session domains (such as gui/), you must target the correct domain to manage them [3][4]. Key Concepts and Commands The legacy launchctl remove command is largely deprecated in favor of more explicit, domain-aware subcommands [1][2]. Modern launchctl syntax uses bootout to stop and unload services [5][2]. 1. Identify the Target Domain User agents typically run in the gui/ domain (where is the numeric User ID, e.g., 501) [3][4]. You can verify the UID of a logged-in user using the id -u command. 2. Bootout (Stop and Unload) To stop and remove a service from the launchd domain, use: launchctl bootout gui// Example: sudo launchctl bootout gui/501/com.example.myagent 3. Managing Contexts with asuser If you need to execute launchctl commands as if you were the target user (e.g., to manage their agents from a root-level script), you can use the asuser subcommand [6][7]. This executes a command in the specified user's Mach bootstrap context [6][8]. Example to unload an agent as a specific user: sudo launchctl asuser 501 launchctl bootout gui/501/com.example.myagent Important Considerations Service Identifiers: The is the label defined within the service's.plist file (e.g., com.example.myagent), not the filename of the.plist itself [3][5]. Persistence: Using bootout only stops the service until the next login or reboot [5]. If the.plist file remains in ~/Library/LaunchAgents or /Library/LaunchAgents, the agent may be reloaded automatically [9][10]. To prevent this, you should also remove or move the.plist file from these directories [11][2]. Disabling: If you wish to prevent a service from launching without deleting the.plist, you can use the disable subcommand [2][4]: sudo launchctl disable gui/501/com.example.myagent For most administrative tasks, targeting the gui// domain directly as root is the standard method for managing agents across user sessions [4].
Citations:
- 1: https://manp.gs/mac/1/launchctl
- 2: https://www.alansiu.net/2023/11/15/launchctl-new-subcommand-basics-for-macos/
- 3: https://keith.github.io/xcode-man-pages/launchctl.1.html
- 4: https://apple.stackexchange.com/questions/471436/disabling-services-daemons-agents-with-launchctl
- 5: https://apple.stackexchange.com/questions/366281/launchd-confusion-on-semantics-of-bootstrap-and-bootout-etc-after-reading-manu
- 6: https://leancrew.com/all-this/man/man1/launchctl.html
- 7: https://breardon.home.blog/2019/09/18/sudo-u-vs-launchctl-asuser/
- 8: https://babodee.wordpress.com/2016/04/09/launchctl-2-0-syntax/
- 9: https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingLaunchdJobs.html
- 10: https://developer.apple.com/library/archive/technotes/tn2083/_index.html
- 11: https://github.com/TheJumpCloud/support/blob/master/scripts/macos/remove_mac_agent.sh
🌐 Web query:
macOS launchctl list without arguments lists current launchd domain user agent
💡 Result:
Yes, running launchctl list without arguments in a terminal session typically lists the jobs loaded into the launchd domain associated with the user's current context [1][2][3]. When executed by a non-privileged user, launchctl list interacts with the per-user launchd session (the user agent domain) [1][2][3]. If you execute the command with sudo (as root), it interacts with the system-wide launchd domain (the launch daemon domain) [1][3]. Because launchctl list is considered a legacy command, it implicitly determines the target domain based on the user ID of the process running the command, rather than requiring explicit domain arguments like the modern print subcommand [1][2]. The output of launchctl list displays three columns: 1. The process ID (PID) of the job, or "-" if the job is not currently running [4][5][6]. 2. The last exit status of the job (a negative number indicates the signal that stopped it) [4][7][6]. 3. The job's label [4][6]. For more granular control and modern diagnostic capabilities, official documentation and technical guidance recommend using the launchctl print subcommand, which allows you to explicitly specify the domain (e.g., system or user/) [4][5][2][3].
Citations:
- 1: https://stackoverflow.com/questions/66572886/launch-daemon-wont-load-from-bash-script-but-will-from-terminal
- 2: https://apple.stackexchange.com/questions/399086/how-to-use-launchctl-print-as-a-replacement-for-launchctl-bslist
- 3: https://rakhesh.com/mac/macos-launchctl-commands/
- 4: https://manp.gs/mac/1/launchctl
- 5: https://apple.stackexchange.com/questions/364094/how-to-view-status-of-service-e-g-whether-its-running-in-a-format-similar-to
- 6: https://www.unix.com/man_page/osx/1/launchctl/
- 7: https://serverfault.com/questions/311160/what-do-the-numbers-in-launchctl-lists-status-column-mean
Target the logged-in user when removing the Ollama launch service.
remove_launchctl_service runs launchctl in the current process context and uses $HOME, so if Fleet runs this as root it can check root’s launchd domain and /var/root/Library/... instead of the console user’s gui/<uid> domain and per-user LaunchAgents path. Resolve the console UID and use that user’s launchd domain/home, then remove any remaining plist.
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@ee/maintained-apps/outputs/ollama/darwin.json` at line 20, Update
remove_launchctl_service to resolve the console user’s UID and home directory,
then run launchctl queries/removals against that user’s gui/<uid> domain instead
of the current process context. Use the console user’s home when constructing
per-user LaunchAgents paths, while preserving sudo handling for system services,
and remove any matching plist after unloading the service.
Automated ingestion of latest Fleet-maintained app data.
Summary by CodeRabbit