File: ntpwait-body.adoc

package info (click to toggle)
ntpsec 1.2.0%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,044 kB
  • sloc: ansic: 60,737; python: 31,610; sh: 1,494; yacc: 1,291; makefile: 176; javascript: 138
file content (43 lines) | stat: -rw-r--r-- 1,375 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
== SYNOPSIS

+ntpwait+ [+-vV+] [+-n+ 'number'] [+-s+ 'secs']

== DESCRIPTION

The +ntpwait+ program blocks until ntpd is in synchronized state. This
can be useful at boot time, to delay the boot sequence until after "ntpd
-g" has set the time.

+ntpwait+ will send at most _number_ queries to {ntpdman}, sleeping
for _secs_ seconds after each status return that says {ntpdman} has not
yet produced a synchronized and stable system clock.

+ntpwait+ will do this quietly, unless the +-v+ flag is provided.

== OPTIONS

+-n+ _number_, +--tries+=_number_::
  Number of times to check ntpd. This option takes an integer number as
  its argument. The default _number_ for this option is: 100.
+
The maximum number of times we will check _ntpd_ to see if it has been
able to synchronize and stabilize the system clock.

+-s+ _secs-between-tries_, +--sleep+=_secs-between-tries_::
  How long to sleep between tries. This option takes an integer number
  as its argument. The default _secs-between-tries_ for this option
  is: 6.
+
We will sleep for _secs-between-tries_ after each query of _ntpd_ that
returns "the time is not yet stable".

+-v+, +--verbose+::
  Be verbose.
+
By default, +ntpwait+ is silent. With this option, +ntpwait+ will
provide status information, including time to synchronization in seconds.

+-V+, +--version+::
  Print the version string and exit.

//end