From 68efd909c8866c2184db6dc9ab86d024288e6cc2 Mon Sep 17 00:00:00 2001 From: Alicia Cozine Date: Mon, 25 Sep 2023 16:18:51 -0500 Subject: [PATCH] use pipe instead of colon for task names --- roles/nginxplus/tasks/conf/upload-config.yml | 30 ++++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/roles/nginxplus/tasks/conf/upload-config.yml b/roles/nginxplus/tasks/conf/upload-config.yml index b1fcab918d..0f4183cb0c 100644 --- a/roles/nginxplus/tasks/conf/upload-config.yml +++ b/roles/nginxplus/tasks/conf/upload-config.yml @@ -1,5 +1,5 @@ --- -- name: "Setup: Upload NGINX Main Configuration File" +- name: Setup | Upload NGINX Main Configuration File copy: src: "{{ nginx_main_upload_src }}" dest: "{{ nginx_main_upload_dest }}" @@ -8,21 +8,21 @@ notify: Reload NGINX when: nginx_main_upload_enable -- name: "Setup: Ensure NGINX HTTP Directory Exists" +- name: Setup | Ensure NGINX HTTP Directory Exists file: path: "{{ nginx_http_upload_dest }}" state: directory mode: 0755 when: nginx_http_upload_enable -- name: "Setup: Ensure NGINX template Directory Exists" +- name: Setup | Ensure NGINX template Directory Exists file: path: "{{ nginx_template_upload_dest }}" state: directory mode: 0755 when: nginx_template_upload_enable -- name: Setup: Upload NGINX HTTP Configuration Files +- name: Setup | Upload NGINX HTTP Configuration Files copy: src: "{{ item }}" dest: "{{ nginx_http_upload_dest }}" @@ -33,7 +33,7 @@ when: nginx_http_upload_enable tags: update_conf -- name: Setup: Ensure cache directories exist +- name: Setup | Ensure cache directories exist file: path: /tmp/nginx/{{ item.short_name }}/NGINX_cache # path: /data/nginx/{{ item.short_name }}/NGINX_cache @@ -43,7 +43,7 @@ loop: "{{ sites }}" tags: test_conf -- name: Setup: Upload NGINX template Configuration Files +- name: Setup | Upload NGINX static template Files copy: src: "{{ item }}" dest: "{{ nginx_template_upload_dest }}" @@ -54,7 +54,7 @@ when: nginx_template_upload_enable tags: update_conf -- name: Setup: Upload NGINX template Configuration Files +- name: Setup | Upload NGINX templated configuration files template: src: http/library.conf.j2 dest: /tmp/{{ item.name }}.conf @@ -65,7 +65,7 @@ loop: "{{ sites }}" tags: test_conf -- name: "Setup: Ensure NGINX Stream Directory Exists" +- name: Setup | Ensure NGINX Stream Directory Exists file: path: "{{ nginx_stream_upload_dest }}" state: directory @@ -73,7 +73,7 @@ when: nginx_stream_upload_enable tags: update_conf -- name: "Setup: Upload NGINX Stream Configuration Files" +- name: Setup | Upload NGINX Stream Configuration Files copy: src: "{{ item }}" dest: "{{ nginx_stream_upload_dest }}" @@ -84,7 +84,7 @@ when: nginx_stream_upload_enable tags: update_conf -- name: "Setup: Ensure NGINX HTML Directory Exists" +- name: Setup | Ensure NGINX HTML Directory Exists file: path: "{{ nginx_html_upload_dest }}" state: directory @@ -92,7 +92,7 @@ when: nginx_html_upload_enable tags: update_conf -- name: "Setup: Upload NGINX HTML Files" +- name: Setup | Upload NGINX HTML Files copy: src: "{{ item }}" dest: "{{ nginx_html_upload_dest }}" @@ -103,14 +103,14 @@ when: nginx_html_upload_enable tags: update_conf -- name: "Setup: Ensure SSL Certificate Directory Exists" +- name: Setup | Ensure SSL Certificate Directory Exists file: path: "{{ nginx_ssl_crt_upload_dest }}" state: directory mode: 0755 when: nginx_ssl_upload_enable -- name: "Setup: Ensure SSL Key Directory Exists" +- name: Setup | Ensure SSL Key Directory Exists file: path: "{{ nginx_ssl_key_upload_dest }}" state: directory @@ -118,7 +118,7 @@ when: nginx_ssl_upload_enable tags: SSL -- name: "Setup: Upload NGINX SSL Certificates" +- name: Setup | Upload NGINX SSL Certificates copy: src: "{{ item }}" dest: "{{ nginx_ssl_crt_upload_dest }}" @@ -129,7 +129,7 @@ when: nginx_ssl_upload_enable tags: SSL -- name: "(Setup: All NGINX) Upload NGINX SSL Keys" +- name: Setup | All NGINX | Upload NGINX SSL Keys copy: src: "{{ item }}" dest: "{{ nginx_ssl_key_upload_dest }}"