mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
9 lines
239 B
Text
9 lines
239 B
Text
|
|
#!/bin/sh
|
||
|
|
# $FreeBSD$
|
||
|
|
# print version string of NTP daemon
|
||
|
|
# Copyright (c) 1997 by Ulrich Windl
|
||
|
|
# Modified 970318: Harlan Stenn: rewritten...
|
||
|
|
# usage: ntpver hostname
|
||
|
|
|
||
|
|
ntpq -c "rv 0 daemon_version" $* | awk '/daemon_version/ { print $2 }'
|