Use the production run list when no Chef environment was set

This commit is contained in:
Greg 2020-11-25 16:34:37 +01:00
parent 613b316588
commit fbd71204c2
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ production_run_list = %w(
kosmos-ejabberd::backup
)
env_run_lists(
'production' => production_run_list,
'development' => default_run_list,
'_default' => default_run_list
'production' => production_run_list,
'_default' => production_run_list
)