chef/roles/ejabberd.rb
Greg Karékinian ee9c241a4d Add a postgresql_client role
The role is empty but is used to explicitly define servers that have
access rights to all PostgreSQL databases and users
2020-06-12 16:54:58 +02:00

19 lines
360 B
Ruby

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