From be7788674da63e7a8332b0f565df11e2c3ae0177 Mon Sep 17 00:00:00 2001 From: Alessandro Fael Garcia Date: Wed, 31 Jan 2018 14:41:12 -0800 Subject: [PATCH] Fix setup-redhat.yml task names --- tasks/opensource/setup-redhat.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/opensource/setup-redhat.yml b/tasks/opensource/setup-redhat.yml index 295a6da..abecbd9 100644 --- a/tasks/opensource/setup-redhat.yml +++ b/tasks/opensource/setup-redhat.yml @@ -1,5 +1,5 @@ --- -- name: "(Install: CentOS/RedHat) Add Mainline NGINX Repository" +- name: "(Install: RedHat) Add Mainline NGINX Repository" yum_repository: name: nginx baseurl: https://nginx.org/packages/mainline/rhel/{{ ansible_distribution_major_version|int }}/$basearch/ @@ -8,7 +8,7 @@ gpgcheck: yes when: branch == "mainline" and ansible_distribution == "RedHat" -- name: "(Install: CentOS/RedHat) Add Mainline NGINX Repository" +- name: "(Install: CentOS) Add Mainline NGINX Repository" yum_repository: name: nginx baseurl: https://nginx.org/packages/mainline/centos/{{ ansible_distribution_major_version|int }}/$basearch/ @@ -17,7 +17,7 @@ gpgcheck: yes when: branch == "mainline" and ansible_distribution == "CentOS" -- name: "(Install: CentOS/RedHat) Add Stable NGINX Repository" +- name: "(Install: RedHat) Add Stable NGINX Repository" yum_repository: name: nginx baseurl: https://nginx.org/packages/rhel/{{ ansible_distribution_major_version|int }}/$basearch/ @@ -26,7 +26,7 @@ gpgcheck: yes when: branch == "stable" and ansible_distribution == "RedHat" -- name: "(Install: CentOS/RedHat) Add Stable NGINX Repository" +- name: "(Install: CentOS) Add Stable NGINX Repository" yum_repository: name: nginx baseurl: https://nginx.org/packages/centos/{{ ansible_distribution_major_version|int }}/$basearch/