Skip to content

Commit

Permalink
change indents for ansible-review
Browse files Browse the repository at this point in the history
  • Loading branch information
deekayen committed Mar 16, 2020
1 parent 4affb6c commit 7961f44
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
- name: Install Apache.
yum:
name:
- httpd
- mod_wsgi
- httpd
- mod_wsgi
state: present

- name: Start Apache.
Expand All @@ -19,17 +19,17 @@
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:
name: httpd_can_sendmail
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:
Expand All @@ -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.
Expand Down

0 comments on commit 7961f44

Please sign in to comment.