Puoi controllare l'unità caricata con il comando systemctl show <unit>.service
. Per quanto ne so, non esiste uno strumento per controllare le modifiche nei file unit.
Inoltre puoi eseguire questo comando bash for var in $(systemctl | grep running | awk '{print $1}'); do systemctl status $var | grep "changed on disk" | grep ".service"; done
mostrerebbe quali file sono stati modificati.
Esempio:
[[email protected] atolkachev]# for var in $(systemctl | grep running | awk '{print $1}'); do systemctl status $var | grep "changed on disk" | grep ".service"; done
Warning: nginx.service changed on disk. Run 'systemctl daemon-reload' to reload units.