#!/bin/sh
set -e

PLIST="/Library/LaunchDaemons/com.bepa.afmp.plist"

if launchctl print system/com.bepa.afmp >/dev/null 2>&1; then
    launchctl bootout system "$PLIST" || true
fi

exit 0
