Update example syntax in playbooks_intro.rst. (#35677)

pull/35684/head
Joshua Smith 7 years ago committed by John R Barker
parent 0a5ff792e4
commit 1b7e5d19a2

@ -62,16 +62,25 @@ For starters, here's a playbook that contains just one play::
remote_user: root remote_user: root
tasks: tasks:
- name: ensure apache is at the latest version - name: ensure apache is at the latest version
yum: name=httpd state=latest yum:
name: httpd
state: latest
- name: write the apache config file - name: write the apache config file
template: src=/srv/httpd.j2 dest=/etc/httpd.conf template:
src: /srv/httpd.j2
dest: /etc/httpd.conf
notify: notify:
- restart apache - restart apache
- name: ensure apache is running (and enable it at boot) - name: ensure apache is running (and enable it at boot)
service: name=httpd state=started enabled=yes service:
name: httpd
state: started
enabled: yes
handlers: handlers:
- name: restart apache - name: restart apache
service: name=httpd state=restarted service:
name: httpd
state: restarted
When working with tasks that have really long parameters or modules that take When working with tasks that have really long parameters or modules that take
many parameters, you can break tasks items over multiple lines to improve the many parameters, you can break tasks items over multiple lines to improve the
@ -242,7 +251,8 @@ You can also control the order in which hosts are run. The default is to follow
order: sorted order: sorted
gather_facts: False gather_facts: False
tasks: tasks:
- debug: var=inventory_hostname - debug:
var: inventory_hostname
Possible values for order are: Possible values for order are:

Loading…
Cancel
Save