#
# Cookbook:: irrigate-orchard_base
# Recipe:: rsyslog
#
# Copyright: The Orchard
#

if platform_family?('rhel', 'amazon', 'debian')

  packages = %w(
    rsyslog
  )

  # Install packages
  packages.each do |name|
    package name
  end

  template '/etc/rsyslog.conf' do
    source 'rsyslog.conf.erb'
    mode '0644'
    notifies :restart, 'service[rsyslog]', :immediately
  end

  service 'rsyslog' do
    supports restart: true, status: true, reload: true
    action [:enable, :start]
  end

end
