chronyd

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
cbeattie-unitrends
Posts: 71
Joined: Mon Oct 10, 2016 2:51 pm

chronyd

Post by cbeattie-unitrends »

If it won't break anything, please add chronyd to /usr/local/nagiosxi/scripts/manage_services.sh for Nagios hosts where time service is provided by that instead of ntpd.
Change from this:

Code: Select all

# Things you can and can't do
first=("start" "stop" "restart" "status" "reload" "checkconfig")
second=("postgresql" "httpd" "mysqld" "nagios" "ndo2db" "npcd" "snmptt" "ntpd" "crond")
To this:

Code: Select all

# Things you can and can't do
first=("start" "stop" "restart" "status" "reload" "checkconfig")
second=("postgresql" "httpd" "mysqld" "nagios" "ndo2db" "npcd" "snmptt" "ntpd" "crond" "chronyd")
User avatar
mcapra
Posts: 3739
Joined: Thu May 05, 2016 3:54 pm

Re: chronyd

Post by mcapra »

It likely won't break anything, but it's also unlikely to see implementation since we don't recommend replacing ntp with chrony. If you're able to make it work, fantastic! But we've had other customers try it and run into issues.
Former Nagios employee
https://www.mcapra.com/
Locked