summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorsirkubax <muszynski@so1.net>2017-09-23 11:50:05 +0200
committersirkubax <muszynski@so1.net>2017-09-23 11:50:05 +0200
commit69c40ee1a2659ba9f150e04adb2822d66f18570f (patch)
treee8508e1ec8cf5c9c291af7f768b0bfd7639cc436
parent7b6f0757c23b2339692c9194e4e5c95614b145f1 (diff)
test markdown
-rw-r--r--ansible.html.markdown9
1 files changed, 4 insertions, 5 deletions
diff --git a/ansible.html.markdown b/ansible.html.markdown
index 255715bd..a09c8b34 100644
--- a/ansible.html.markdown
+++ b/ansible.html.markdown
@@ -79,7 +79,7 @@ $ ansible -m command -a 'echo $HOME'
* Module: `raw` - executes a low-down and dirty SSH command, not going through the module subsystem (usefull to install python2.7)
-### Ansible - naming and basic concept
+### Ansible - naming and quick intro
#### Inventory
Inventory is a set of an objects or hosts, against which we are executing our playbooks or single tasks via shell commands
@@ -96,11 +96,10 @@ hostB.localdomain
* [Additional Reading.](http://docs.ansible.com/ansible/latest/intro_inventory.html)
#### Task
-Execution of a single module is called a `task`
+Execution of a single Ansible **module** is called a **task**
-The simplest module is called `ping` as you could see above
-
-Another example of the module that allow you to execute command remotly on multiple resources is called shell. It is the same as you would execute command remotely over ssh.
+ The simplest module is called `ping` as you could see above
+ Another example of the module that allow you to execute command remotly on multiple resources is called shell. It is the same as you would execute command remotely over ssh.
Example of a Task run in CLI:
###### Run a ansible module