Tags added to main.yml (#186)
* Tags added to each import_tasks in main.yml
This commit is contained in:
parent
27d94628bd
commit
fd88f4cb22
@ -1,5 +1,6 @@
|
||||
---
|
||||
- import_tasks: prerequisites/install-prerequisites.yml
|
||||
tags: nginx_prerequisites
|
||||
|
||||
- import_tasks: keys/apt-key.yml
|
||||
when:
|
||||
@ -8,6 +9,7 @@
|
||||
or nginx_amplify_enable
|
||||
or nginx_controller_enable
|
||||
or nginx_unit_enable
|
||||
tags: nginx_aptkey
|
||||
|
||||
- import_tasks: keys/rpm-key.yml
|
||||
when:
|
||||
@ -17,21 +19,26 @@
|
||||
or nginx_amplify_enable
|
||||
or nginx_controller_enable
|
||||
or nginx_unit_enable
|
||||
tags: nginx_rpmkey
|
||||
|
||||
- import_tasks: keys/apk-key.yml
|
||||
when: ansible_os_family == "Alpine"
|
||||
tags: nginx_apkkey
|
||||
|
||||
- name: "(Install: Debian/Ubuntu/CentOS/RedHat/FreeBSD) Install NGINX"
|
||||
block:
|
||||
|
||||
- import_tasks: opensource/install-oss.yml
|
||||
when: nginx_type == "opensource"
|
||||
tags: nginx_install_oss
|
||||
|
||||
- import_tasks: plus/install-plus.yml
|
||||
when: nginx_type == "plus"
|
||||
tags: nginx_install_plus
|
||||
|
||||
- import_tasks: conf/cleanup-config.yml
|
||||
when: nginx_cleanup_config | bool
|
||||
tags: nginx_cleanup_config
|
||||
|
||||
- import_tasks: conf/upload-config.yml
|
||||
when: nginx_main_upload_enable
|
||||
@ -39,24 +46,30 @@
|
||||
or nginx_stream_upload_enable
|
||||
or nginx_html_upload_enable
|
||||
or nginx_ssl_upload_enable
|
||||
tags: nginx_upload_config
|
||||
|
||||
- import_tasks: conf/template-config.yml
|
||||
when: nginx_main_template_enable
|
||||
or nginx_http_template_enable
|
||||
or nginx_stream_template_enable
|
||||
or nginx_rest_api_enable
|
||||
tags: nginx_template_config
|
||||
|
||||
- import_tasks: conf/setup-status.yml
|
||||
when: nginx_status_enable | bool
|
||||
tags: nginx_setup_status
|
||||
|
||||
- import_tasks: modules/install-modules.yml
|
||||
when: true in nginx_modules.values()
|
||||
tags: nginx_install_modules
|
||||
|
||||
- import_tasks: conf/debug-output.yml
|
||||
when: nginx_debug_output | bool
|
||||
tags: nginx_debug_output
|
||||
|
||||
- import_tasks: plus/delete-license.yml
|
||||
when: nginx_type == "plus" and nginx_delete_license
|
||||
tags: nginx_delete_license
|
||||
|
||||
when: nginx_enable | bool
|
||||
|
||||
@ -65,6 +78,7 @@
|
||||
- nginx_amplify_enable | bool
|
||||
- nginx_amplify_api_key is defined
|
||||
- nginx_amplify_api_key | length > 0
|
||||
tags: nginx_install_amplify
|
||||
|
||||
- import_tasks: controller/install-controller.yml
|
||||
when:
|
||||
@ -73,6 +87,8 @@
|
||||
- nginx_controller_api_key | length > 0
|
||||
- nginx_controller_api_endpoint is defined
|
||||
- nginx_controller_api_endpoint | length > 0
|
||||
tags: nginx_install_controller
|
||||
|
||||
- import_tasks: unit/install-unit.yml
|
||||
when: nginx_unit_enable | bool
|
||||
tags: nginx_install_unit
|
||||
|
Loading…
Reference in New Issue
Block a user