Skip to content

Instantly share code, notes, and snippets.

@nistude
Created March 4, 2012 13:47
Show Gist options
  • Save nistude/1973080 to your computer and use it in GitHub Desktop.
Save nistude/1973080 to your computer and use it in GitHub Desktop.
An example of recipe composition
include_recipe "sample_app::_group"
include_recipe "sample_app::_user"
include_recipe "apt::add_company_repository"
include_recipe "sample_app::_server_install_from_package"
include_recipe "sample_app::_server_runit"
include_recipe "sample_app::_server_config"
group node['sample_app']['group']
include_recipe "sample_app::_group"
include_recipe "sample_app::_user"
include_recipe "sample_app::_server_source"
include_recipe "sample_app::_server_runit"
include_recipe "sample_app::_server_config"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment