Follow the convention of putting each parameter on multiple lines,
instead of cramming everything into one line.
This is a style change only; no functional change.
Signed-off-by: Ken Dreyer <kdreyer@redhat.com>
---
- name: install nginx web server
- yum: name=nginx state=present
+ yum:
+ name: nginx
+ state: present
- name: create nginx docroot
file:
- restart nginx
- name: start the nginx service
- service: name=nginx state=started enabled=yes
+ service:
+ name: nginx
+ state: started
+ enabled: yes