mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 04:33:00 +02:00
20 lines
286 B
Bash
Executable File
20 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
# Helper script to chronyc, checks if daemon is running
|
|
|
|
if ! chronyc serverstats >/dev/null; then
|
|
echo "NTP client not enabled."
|
|
exit 1
|
|
fi
|
|
|
|
case $1 in
|
|
tracking)
|
|
chronyc tracking
|
|
;;
|
|
sources)
|
|
chronyc sources -v
|
|
;;
|
|
*)
|
|
echo "Unknown NTP command."
|
|
;;
|
|
esac
|