I created a simple script to force a machine to update itself from our internal time server. It runs in seconds locally on my machine and when pushed out via ARD. I then created a policy around it and added it to Self Service. The policy does not do anything else (no recon, etc.).
When I activate it in Self Service it never finishes and the Self Service process just runs forever. Does anyone have any ideas on why it never completes when triggered from SS?
Here's the script:
---------------------
#!/bin/bash
# Force a clock update from listed time server.
ntpdate -u 172.21.1.9
exit
---------------------
Thanks,
Tom