chef/roles/ejabberd.rb
Greg Karékinian 1a6ce44758 Create a minimalist ejabberd role for development
No Let's Encrypt, no backups
2020-06-10 18:43:34 +02:00

17 lines
308 B
Ruby

name "ejabberd"
default_run_list = %w(
kosmos-ejabberd::default
)
production_run_list = %w(
kosmos-ejabberd::default
kosmos-ejabberd::letsencrypt
kosmos-ejabberd::backup
)
env_run_lists(
'production' => production_run_list,
'development' => default_run_list,
'_default' => default_run_list
)