From bbe2b8c20df1756d95b8d5571cefdc98ce6ed2c3 Mon Sep 17 00:00:00 2001 From: AmirAli Akbari Date: Wed, 2 Oct 2019 16:30:51 +0330 Subject: [PATCH] Corrected links to Ansible documentation The external links for inventory and playbook where displaced and needed to be swapped. --- ansible-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible-guide.md b/ansible-guide.md index 7f288a448..8b1a299cf 100644 --- a/ansible-guide.md +++ b/ansible-guide.md @@ -45,7 +45,7 @@ See: [Getting started](http://docs.ansible.com/ansible/latest/intro_getting_star This is a list of hosts you want to manage, grouped into groups. (Hint: try using `localhost ansible_connection=local` to deploy to your local machine.) -See: [Intro to Inventory](http://docs.ansible.com/ansible/latest/playbooks_intro.html) +See: [Intro to Inventory](http://docs.ansible.com/ansible/latest/intro_inventory.html) ### Playbook @@ -68,7 +68,7 @@ See: [Intro to Inventory](http://docs.ansible.com/ansible/latest/playbooks_intro gem: name=bundler state=latest ``` -See: [Intro to Playbooks](http://docs.ansible.com/ansible/latest/intro_inventory.html) +See: [Intro to Playbooks](http://docs.ansible.com/ansible/latest/playbooks_intro.html) ## Running