fixes #12274
Signed-off-by: Gunnar Beutner <gunnar.beutner@netways.de>
----------------|--------------
ntp_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
ntp_port | **Optional.** Port number (default: 123).
-ntp_quit | **Optional.** Returns UNKNOWN instead of CRITICAL if offset cannot be found.
+ntp_quiet | **Optional.** Returns UNKNOWN instead of CRITICAL if offset cannot be found.
ntp_warning | **Optional.** Offset to result in warning status (seconds).
ntp_critical | **Optional.** Offset to result in critical status (seconds).
ntp_timeoffset | **Optional.** Expected offset of the ntp server relative to local server (seconds).
arguments = {
"-H" = "$ntp_address$"
"-p" = "$ntp_port$"
- "-q" = "$ntp_quit$"
+ "-q" = {
+ set_if = "$ntp_quiet$"
+ description = "Returns UNKNOWN instead of CRITICAL if offset cannot be found"
+ }
"-w" = "$ntp_warning$"
"-c" = "$ntp_critical$"
"-o" = "$ntp_timeoffset$"