From 7961f44f5beebac5ba237e42aed0911a622e163b Mon Sep 17 00:00:00 2001 From: David Norman Date: Mon, 16 Mar 2020 14:57:14 -0400 Subject: [PATCH] change indents for ansible-review --- tasks/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index a1a8249..f35dbf2 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -3,8 +3,8 @@ - name: Install Apache. yum: name: - - httpd - - mod_wsgi + - httpd + - mod_wsgi state: present - name: Start Apache. @@ -19,8 +19,8 @@ state: yes persistent: yes when: - - ansible_selinux is defined - - ansible_selinux.status == 'enabled' + - ansible_selinux is defined + - ansible_selinux.status == 'enabled' - name: Set SELinux permissions to allow Apache to email password resets. seboolean: @@ -28,8 +28,8 @@ state: yes persistent: yes when: - - ansible_selinux is defined - - ansible_selinux.status == 'enabled' + - ansible_selinux is defined + - ansible_selinux.status == 'enabled' - name: Add PostgreSQL repo. yum: @@ -39,8 +39,8 @@ - name: Install python dependency packages. yum: name: - - python-flask - - python-psycopg2 + - python-flask + - python-psycopg2 state: present - name: Install python pip modules.