Improve Ansible Galaxy metadata score (#79)
This commit is contained in:
parent
243cee42d5
commit
c2cdc68ec3
@ -34,15 +34,10 @@ galaxy_info:
|
|||||||
|
|
||||||
galaxy_tags:
|
galaxy_tags:
|
||||||
- nginx
|
- nginx
|
||||||
- nginx-oss
|
|
||||||
- oss
|
- oss
|
||||||
- nginx-plus
|
|
||||||
- plus
|
- plus
|
||||||
- nginx-amplify
|
|
||||||
- amplify
|
- amplify
|
||||||
- nginx-controller
|
|
||||||
- controller
|
- controller
|
||||||
- nginx-unit
|
|
||||||
- unit
|
- unit
|
||||||
- web
|
- web
|
||||||
- server
|
- server
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
---
|
---
|
||||||
- name: "(Install: RPM OSs) Add RPM NGINX Signing Key"
|
- name: "(Install: RPM OSs) Add RPM NGINX Signing Key"
|
||||||
rpm_key:
|
rpm_key:
|
||||||
key: "{{ 'http://nginx.org/keys/nginx_signing.key' | default('https://nginx.org/keys/nginx_signing.key') }}"
|
key: "{{ 'http://nginx.org/keys/nginx_signing.key' | default('https://nginx.org/keys/nginx_signing.key') }}"
|
||||||
|
@ -4,12 +4,19 @@
|
|||||||
- import_tasks: keys/apt-key.yml
|
- import_tasks: keys/apt-key.yml
|
||||||
when:
|
when:
|
||||||
- ansible_os_family == "Debian"
|
- ansible_os_family == "Debian"
|
||||||
- nginx_install_from == "nginx_repository" or nginx_amplify_enable or nginx_controller_enable or nginx_unit_enable
|
- nginx_install_from == "nginx_repository"
|
||||||
|
or nginx_amplify_enable
|
||||||
|
or nginx_controller_enable
|
||||||
|
or nginx_unit_enable
|
||||||
|
|
||||||
- import_tasks: keys/rpm-key.yml
|
- import_tasks: keys/rpm-key.yml
|
||||||
when:
|
when:
|
||||||
- ansible_os_family == "RedHat" or ansible_os_family == "Suse"
|
- ansible_os_family == "RedHat"
|
||||||
- nginx_install_from == "nginx_repository" or nginx_amplify_enable or nginx_controller_enable or nginx_unit_enable
|
or ansible_os_family == "Suse"
|
||||||
|
- nginx_install_from == "nginx_repository"
|
||||||
|
or nginx_amplify_enable
|
||||||
|
or nginx_controller_enable
|
||||||
|
or nginx_unit_enable
|
||||||
|
|
||||||
- name: "(Install: Debian/Ubuntu/CentOS/RedHat/FreeBSD) Install NGINX"
|
- name: "(Install: Debian/Ubuntu/CentOS/RedHat/FreeBSD) Install NGINX"
|
||||||
block:
|
block:
|
||||||
@ -24,10 +31,16 @@
|
|||||||
when: true in nginx_modules.values()
|
when: true in nginx_modules.values()
|
||||||
|
|
||||||
- import_tasks: conf/upload-config.yml
|
- import_tasks: conf/upload-config.yml
|
||||||
when: nginx_main_upload_enable or nginx_http_upload_enable or nginx_stream_upload_enable or nginx_html_upload_enable or nginx_ssl_upload_enable
|
when: nginx_main_upload_enable
|
||||||
|
or nginx_http_upload_enable
|
||||||
|
or nginx_stream_upload_enable
|
||||||
|
or nginx_html_upload_enable
|
||||||
|
or nginx_ssl_upload_enable
|
||||||
|
|
||||||
- import_tasks: conf/template-config.yml
|
- import_tasks: conf/template-config.yml
|
||||||
when: nginx_main_template_enable or nginx_http_template_enable or nginx_stream_template_enable
|
when: nginx_main_template_enable
|
||||||
|
or nginx_http_template_enable
|
||||||
|
or nginx_stream_template_enable
|
||||||
|
|
||||||
- import_tasks: conf/setup-status.yml
|
- import_tasks: conf/setup-status.yml
|
||||||
when: nginx_status_enable
|
when: nginx_status_enable
|
||||||
@ -41,10 +54,18 @@
|
|||||||
when: nginx_enable
|
when: nginx_enable
|
||||||
|
|
||||||
- import_tasks: amplify/install-amplify.yml
|
- import_tasks: amplify/install-amplify.yml
|
||||||
when: nginx_amplify_enable and nginx_amplify_api_key is defined and nginx_amplify_api_key
|
when:
|
||||||
|
- nginx_amplify_enable
|
||||||
|
- nginx_amplify_api_key is defined
|
||||||
|
- nginx_amplify_api_key
|
||||||
|
|
||||||
- import_tasks: controller/install-controller.yml
|
- import_tasks: controller/install-controller.yml
|
||||||
when: nginx_controller_enable and nginx_controller_api_key is defined and nginx_controller_api_key and nginx_controller_api_endpoint is defined and nginx_controller_api_endpoint
|
when:
|
||||||
|
- nginx_controller_enable
|
||||||
|
- nginx_controller_api_key is defined
|
||||||
|
- nginx_controller_api_key
|
||||||
|
- nginx_controller_api_endpoint is defined
|
||||||
|
- nginx_controller_api_endpoint
|
||||||
|
|
||||||
- import_tasks: unit/install-unit.yml
|
- import_tasks: unit/install-unit.yml
|
||||||
when: nginx_unit_enable
|
when: nginx_unit_enable
|
||||||
|
Loading…
Reference in New Issue
Block a user