Hello all,
I have a very specific need to set the NTP server on my endpoints using a configuration profile rather than through a policy because I have clients who's time shifted past 5 minutes and thus cannot run policies.
I have tried to research a bit if Configuration Profiles have any ability to adjust the time settings in OS X but have come up with nothing. Does anyone in the community know if it is possible to set the NTP server using Configuration Profiles?
In case anyone is interested, here is a script to set the NTP server for your clients.
#!/bin/sh
# Set Network Time Server
systemsetup -setnetworktimeserver time.apple.com
exit 0
