chef/roles/redis_server.rb

19 lines
299 B
Ruby

name "redis_server"
default_run_list = %w(
kosmos_redis::default
)
production_run_list = %w(
kosmos_redis::default
kosmos_redis::firewall
)
env_run_lists(
'_default' => default_run_list,
'development' => default_run_list,
'production' => production_run_list
)
default_attributes({})