diff options
author | roberto <roberto@FreeBSD.org> | 2001-08-29 14:35:15 +0000 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2001-08-29 14:35:15 +0000 |
commit | 40b8e415eb0f835a9dd7a473ddf134ec67877fd7 (patch) | |
tree | 3cfb63f1a112ee17469b17fc1593a88d004ddda6 /contrib/ntp/scripts/ntp-restart | |
parent | a5a8dc6136fcee95f261a31609a25669038c3861 (diff) | |
download | FreeBSD-src-40b8e415eb0f835a9dd7a473ddf134ec67877fd7.zip FreeBSD-src-40b8e415eb0f835a9dd7a473ddf134ec67877fd7.tar.gz |
Virgin import of ntpd 4.1.0
Diffstat (limited to 'contrib/ntp/scripts/ntp-restart')
-rwxr-xr-x | contrib/ntp/scripts/ntp-restart | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/ntp/scripts/ntp-restart b/contrib/ntp/scripts/ntp-restart index d2023f0..0a1d58a 100755 --- a/contrib/ntp/scripts/ntp-restart +++ b/contrib/ntp/scripts/ntp-restart @@ -1,9 +1,10 @@ #!/bin/sh # # This script can be used to kill and restart the NTP daemon. Edit the -# /usr/local/bin/xntpd line to fit. +# /usr/local/bin/ntpd line to fit. # -kill -INT `ps -ax | egrep "xntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/` +kill -INT `ps -ax | egrep "ntpd" | egrep -v "egrep" | sed 's/^\([ 0-9]*\) .*/\1'/` sleep 10 -/usr/local/bin/xntpd +/usr/local/bin/ntpd -g +/usr/local/bin/ntp-wait exit 0 |