From 32b92b53b04068615a351a543574892bf33063a7 Mon Sep 17 00:00:00 2001 From: Vlad Dm <2tunnels@gmail.com> Date: Tue, 14 Feb 2017 12:39:27 +0200 Subject: service state typo --- docs/docsite/rst/playbooks_conditionals.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/docsite/rst/playbooks_conditionals.rst b/docs/docsite/rst/playbooks_conditionals.rst index 78959ef57e..c5d7ac887e 100644 --- a/docs/docsite/rst/playbooks_conditionals.rst +++ b/docs/docsite/rst/playbooks_conditionals.rst @@ -194,8 +194,8 @@ but it is easily handled with a minimum of syntax in an Ansible Playbook:: - "vars/common.yml" - [ "vars/{{ ansible_os_family }}.yml", "vars/os_defaults.yml" ] tasks: - - name: make sure apache is running - service: name={{ apache }} state=running + - name: make sure apache is started + service: name={{ apache }} state=started .. note:: 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 template: src={{ item }} dest=/etc/myapp/foo.conf with_first_found: - - files: + - files: - {{ ansible_distribution }}.conf - default.conf paths: @@ -320,4 +320,3 @@ You may check the registered variable's string contents for emptiness:: Have a question? Stop by the google group! `irc.freenode.net `_ #ansible IRC chat channel - -- cgit v1.2.1