From 780716cfe33f1e1f7828259cea9657e1cc12f13b Mon Sep 17 00:00:00 2001 From: Nicolas Quiniou-Briand Date: Tue, 22 Jan 2019 11:38:07 +0100 Subject: [PATCH] Replace httpd.conf by index.html in first playbook (#363) * Update ansible-best-practices.html * httpd.conf -> index.html --- guides/ansible_engine/2-playbook/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/ansible_engine/2-playbook/README.md b/guides/ansible_engine/2-playbook/README.md index 0f938c6d..0a07d0a0 100644 --- a/guides/ansible_engine/2-playbook/README.md +++ b/guides/ansible_engine/2-playbook/README.md @@ -72,7 +72,7 @@ Now that we've defined your play, let's add some tasks to get some things done. * These four lines are calling the Ansible module *yum* to install httpd. [Click here](http://docs.ansible.com/ansible/yum_module.html) to see all options for the yum module. ```yml -- name: Ensure latest httpd.conf file is present +- name: Ensure latest index.html file is present copy: src: files/index.html dest: /var/www/html/ @@ -168,7 +168,7 @@ In the meantime, your completed playbook should look like this example below. (T name: httpd state: present - - name: Ensure latest httpd.conf file is present + - name: Ensure latest index.html file is present copy: src: files/index.html dest: /var/www/html/