Hi
We have been testing out the usage of alerter for notifying our users of available updates in self service. It's a simple script that pretends to be from self service and says updates are available with a button that will open up self service. When we run it using reoccurring check in as the trigger the notification does not show up and the policy appears to be stuck as the computer won't check in again until rebooted or the same script is run manually from self service. When run from self service it runs as it should without issue. Since the policy isn't failing we can't find any logs for what is going on exactly either. Any ideas?
ANSWER="$(alerter -title 'Software Update Available' -message 'Install via Self Service' -actions "Open Self Service" -sender com.jamfsoftware.selfservice.mac)"
case $ANSWER in
"Open Self Service") open /Applications/Self\\ Service.app ;;
esac