mirror of
https://github.com/saltstack-formulas/cron-formula.git
synced 2024-12-04 18:35:19 +01:00
19 lines
311 B
Ruby
19 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
control 'Cron service' do
|
|
title 'should be running and enabled'
|
|
|
|
service_name =
|
|
case os[:family]
|
|
when 'debian', 'suse'
|
|
'cron'
|
|
else
|
|
'crond'
|
|
end
|
|
|
|
describe service(service_name) do
|
|
it { should be_enabled }
|
|
it { should be_running }
|
|
end
|
|
end
|