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.
|
- # frozen_string_literal: true
-
- # Overide by OS
- service_name =
- case os[:name]
- when 'debian', 'ubuntu'
- 'chrony'
- else
- 'chronyd'
- end
-
- control 'Chron service' do
- impact 0.5
- title 'should be running and enabled'
-
- describe service(service_name) do
- it { should be_enabled }
- it { should be_running }
- end
- end
|