service state typo

pull/4420/head
Vlad Dm 2017-02-14 12:39:27 +02:00 committed by Brian Coca
parent e075307f3a
commit 32b92b53b0
1 changed files with 3 additions and 4 deletions

View File

@ -194,8 +194,8 @@ but it is easily handled with a minimum of syntax in an Ansible Playbook::
- "vars/common.yml" - "vars/common.yml"
- [ "vars/{{ ansible_os_family }}.yml", "vars/os_defaults.yml" ] - [ "vars/{{ ansible_os_family }}.yml", "vars/os_defaults.yml" ]
tasks: tasks:
- name: make sure apache is running - name: make sure apache is started
service: name={{ apache }} state=running service: name={{ apache }} state=started
.. note:: .. note::
The variable 'ansible_os_family' is being interpolated into The variable 'ansible_os_family' is being interpolated into
@ -242,7 +242,7 @@ The following example shows how to template out a configuration file that was ve
- name: template a file - name: template a file
template: src={{ item }} dest=/etc/myapp/foo.conf template: src={{ item }} dest=/etc/myapp/foo.conf
with_first_found: with_first_found:
- files: - files:
- {{ ansible_distribution }}.conf - {{ ansible_distribution }}.conf
- default.conf - default.conf
paths: paths:
@ -320,4 +320,3 @@ You may check the registered variable's string contents for emptiness::
Have a question? Stop by the google group! Have a question? Stop by the google group!
`irc.freenode.net <http://irc.freenode.net>`_ `irc.freenode.net <http://irc.freenode.net>`_
#ansible IRC chat channel #ansible IRC chat channel