ansible/roles/rails/tasks/main.yml in subspace-0.6.17 vs ansible/roles/rails/tasks/main.yml in subspace-1.0.0
- old
+ new
@@ -33,18 +33,23 @@
template:
src: application.yml
dest: /u/apps/{{project_name}}/shared/config/application.yml
owner: "{{deploy_user}}"
become: true
+ tags:
+ - appyml
- debug:
msg: "Warning: Using legacy appyml for variable configuration. Consider switching to application.yml.template"
verbosity: 0
when: appyml is defined
+ tags:
+ - appyml
- name: Create application.yml
when: appyml is not defined
template:
src: application.yml.template
dest: /u/apps/{{project_name}}/shared/config/application.yml
owner: "{{deploy_user}}"
-
+ tags:
+ - appyml