fix(platform): add support for Arch

This commit is contained in:
Imran Iqbal
2019-10-15 02:16:06 +01:00
parent c12034a38d
commit a9968e329c
3 changed files with 15 additions and 6 deletions
@@ -7,6 +7,14 @@ control 'Cron service' do
case os[:family]
when 'debian', 'suse'
'cron'
# Catch remaining `linux` platforms to identify by `name` at the end
when 'linux'
case os[:name]
when 'arch'
'cronie'
else
'crond'
end
else
'crond'
end