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
| Entity Block Structure Rules | |
| Each entity follows this exact structure: | |
| Header | |
| - Title: EntityName in SnakeCase with backticks (h3 heading) | |
| - Description: One sentence defining what the entity represents | |
| Properties Section |
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
| pkg_gcc = package 'gcc' do | |
| action :nothing | |
| end | |
| pkg_gcc.run_action(:install) | |
| pkg_sqlite = package 'sqlite-devel' do | |
| action :nothing | |
| end | |
| pkg_sqlite.run_action(:install) |
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
| Recipe: bf_introscope_agent::agent_install | |
| * bash[download_agent] action run (skipped due to not_if) | |
| * file[/var/chef/cache/bf_introscope_agent_v1.tar] action create (up to date) | |
| * directory[/mnt/introscope] action create (up to date) | |
| * directory[/usr/local/opt] action create (up to date) | |
| * link[/usr/local/opt/introscope] action create (up to date) | |
| * execute[tar xf /var/chef/cache/bf_introscope_agent_v1.tar -C /mnt] action run | |
| ================================================================================ | |
| Error executing action `run` on resource 'execute[tar xf /var/chef/cache/bf_introscope_agent_v1.tar -C /mnt]' | |
| ================================================================================ |