From 05fcff7986335c88a3ffb8c8211ab1e6c59e2a3e Mon Sep 17 00:00:00 2001 From: Alessandro Fael Garcia Date: Tue, 17 Apr 2018 14:30:43 -0700 Subject: [PATCH] Replace *_upload_* with *_push_* --- tasks/conf/push-config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/conf/push-config.yml b/tasks/conf/push-config.yml index 40ff267..9aeba47 100644 --- a/tasks/conf/push-config.yml +++ b/tasks/conf/push-config.yml @@ -20,7 +20,7 @@ - name: "(Setup: All NGINX) Upload NGINX Main Configuration File" copy: - src: "{{ main_upload_location }}" + src: "{{ main_push_location }}" dest: /etc/nginx/nginx.conf notify: "(Handler: All OSs) Reload NGINX" when: main_push_enable @@ -36,9 +36,9 @@ src: "{{ item }}" dest: /etc/nginx/conf.d/http with_fileglob: - - "{{ http_upload_location }}" + - "{{ http_push_location }}" notify: "(Handler: All OSs) Reload NGINX" - when: http_push_enablee + when: http_push_enable - name: "(Setup: All NGINX) Ensure NGINX Stream Directory Exists" file: @@ -51,6 +51,6 @@ src: "{{ item }}" dest: /etc/nginx/conf.d/stream with_fileglob: - - "{{ stream_upload_location }}" + - "{{ stream_push_location }}" notify: "(Handler: All OSs) Reload NGINX" when: stream_push_enable