Saltstack Official Chrony Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

21 lines
331B

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