blob: da00247a8b3acc58a0d71d1896f3833d2690561d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
#
# Script to produce some dummy output to satisfy contrail-nodemgr ntp status
# Note: This is intended to be deployed inside containers where the host is running ntp
if [ -x /usr/bin/ntpq ]; then
exec /usr/bin/ntpq "$@"
fi
echo "*"
|