Saltstack Official Chrony Formula
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
300B

  1. # Overide by OS
  2. service_name =
  3. case os[:name]
  4. when 'debian', 'ubuntu'
  5. 'chrony'
  6. else
  7. 'chronyd'
  8. end
  9. control 'Chron service' do
  10. impact 0.5
  11. title 'should be running and enabled'
  12. describe service(service_name) do
  13. it { should be_enabled }
  14. it { should be_running }
  15. end
  16. end