Skip to content
This repository has been archived by the owner on Jul 11, 2019. It is now read-only.

Commit

Permalink
Replace httpd.conf by index.html in first playbook (#363)
Browse files Browse the repository at this point in the history
* Update ansible-best-practices.html

* httpd.conf -> index.html
  • Loading branch information
nqb authored and gundalow committed Jan 22, 2019
1 parent 4da4d07 commit 780716c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions guides/ansible_engine/2-playbook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down Expand Up @@ -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/
Expand Down

0 comments on commit 780716c

Please sign in to comment.