inspec/test/cookbooks/os_prepare/recipes/auditctl.rb

9 lines
245 B
Ruby
Raw Normal View History

# encoding: utf-8
# author: Stephan Renatus
case node['platform']
when 'centos'
execute 'auditctl -a always,exit -F arch=b32 -S open -S openat -F exit=-EACCES -k access'
execute 'auditctl -w /etc/ssh/sshd_config -p rwxa -k sshd_config'
end