chef/roles/openresty.rb
Greg Karékinian 4e0bd191c3 Move the Hello World lua app to its own recipe
Use it in the development environment
2023-07-17 18:04:35 +02:00

17 lines
289 B
Ruby

name "openresty"
development_run_list = %w(
kosmos_openresty::default
kosmos_openresty::hello_world
)
default_run_list = %w(
kosmos_openresty::default
)
env_run_lists(
'_default' => default_run_list,
'development' => development_run_list,
'production' => default_run_list
)