Commit 06e4dc5e by Kevin Falcone Committed by GitHub

Merge pull request #4062 from edx/jibsheet/dont-swallow-config-errors

Make edx_service stricter about edx_service_config
parents 935e467f 86b1b276
......@@ -17,6 +17,12 @@
edx_service_name: edx_service
edx_service_repos: []
# A few roles meta this role but don't need a config file written
# this allows them to not pass a config and the tasks will skip
# and not write out a config at all.
edx_service_config: {}
#
# OS packages
#
......
......@@ -95,7 +95,7 @@
src: "config.yml.j2"
dest: "{{ COMMON_CFG_DIR }}/{{ edx_service_name }}.yml"
mode: "0644"
when: edx_service_config is defined
when: edx_service_config
tags:
- install
- install:configuration
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment