From fbd71204c2d43bb73be5031b30b7993270be7eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Wed, 25 Nov 2020 16:34:37 +0100 Subject: [PATCH] Use the production run list when no Chef environment was set --- roles/ejabberd.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ejabberd.rb b/roles/ejabberd.rb index 561ca33..824fd67 100644 --- a/roles/ejabberd.rb +++ b/roles/ejabberd.rb @@ -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 )