systemctlコマンド

自動起動確認
systemctl list-unit-files --type=service

or

systemctl -t service list-unit-files


起動スクリプトの設定表示
systemctl cat ntp.service


起動パラメータ設定表示
systemctl show ntp.service


起動パラメータを指定して個別表示
systemctl show ntp.service -p TimeoutStartUSec


起動スクリプト更新後反映
systemctl daemon-reload

or

systemctl reenable ntp.service


/etc/systemd/system.conf更新後反映
systemctl daemon-reexec