I'm looking to create a policy that will combined multiple patch management policies to happen at the same time to create a better user experience. My current set up is that these individual policies are available in Self Service and have a trigger. Some of these policies require a reboot, and others do not.
So the script will check the version of the various software and then if it is not the required version it will run the trigger.
If I do
#!/bin/sh
jamf policy -trigger bluejeans
jamf policy -trigger office
jamf policy -trigger globalprotect
jamf policy -trigger applesoftwareupdates
and both the globalprotect and applesoftwareupdates policies require reboot. Is there way I can run all these policies and only reboot once without having to create separate policies for the triggers that do not reboot?
