summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorsirkubax <muszynski@so1.net>2017-09-23 11:53:10 +0200
committersirkubax <muszynski@so1.net>2017-09-23 11:53:10 +0200
commita6ea9118be2fe266ea89661b360707294b854725 (patch)
tree36e11c2c0debb76a0ac50468233032ff486ffaee
parente946c383fde705d20aa3342c372cc8ad22793d90 (diff)
test markdown
-rw-r--r--ansible.html.markdown7
1 files changed, 3 insertions, 4 deletions
diff --git a/ansible.html.markdown b/ansible.html.markdown
index 02ee8694..44bce5b0 100644
--- a/ansible.html.markdown
+++ b/ansible.html.markdown
@@ -99,6 +99,7 @@ hostB.localdomain
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.
Example of a Task run in CLI:
@@ -106,14 +107,12 @@ Example of a Task run in CLI:
##### Playbook
-Execution plan written in a form of script file(s) is called `playbook`.--
-
+Execution plan written in a form of script file(s) is called `playbook`.
Playbook consist of multiple elements
* a list (or group) of hosts that 'the play' is executed against
* `task(s)` or `role(s)` that are going to be executed
* multiple optional settings (like default variables, and way more)
-Playbook script language is YAML--
-
+Playbook script language is YAML
You can think that playbook is very advanced CLI script that you are executing.