#
# Cookbook:: irrigate-orchard_base
# Recipe:: services_hardening
#
# Copyright: The Orchard
#
# This recipe manages resources which are to be restricted or hardened
node['os-hardening']['restricted_services'].each do |restricted_service|
  service restricted_service do
    action [:stop, :disable]
  end
end
