Last active
September 27, 2017 17:15
-
-
Save smford22/dd2841e0805aaa4a4a7304b540871539 to your computer and use it in GitHub Desktop.
Base Linux Role
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name 'base_linux' | |
description 'A base role to be applied to all linux nodes' | |
run_list 'recipe[chef-client::default]','recipe[chef-client::delete_validation]','recipe[audit::default]' | |
default_attributes({ | |
'audit' => { | |
'reporter' => 'chef-server-automate', | |
'fetcher' => 'chef-server', | |
'profiles' => [ | |
{ | |
'name' => 'linux-patch-baseline', | |
'url' => 'https://github.com/dev-sec/linux-patch-baseline' | |
}, | |
{ | |
'name' => 'linux-baseline', | |
'url' => 'https://github.com/dev-sec/linux-baseline' | |
} | |
] | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment