summaryrefslogtreecommitdiffhomepage
path: root/ansible.html.markdown
diff options
context:
space:
mode:
authorsirkubax <muszynski@so1.net>2017-09-22 22:29:12 +0200
committersirkubax <muszynski@so1.net>2017-09-22 22:29:12 +0200
commit6ade03b92abfdc30917aa0f5188e7a0ed9a70ca9 (patch)
treecfcdf16e03ea03b1be0c5233be11800e6c04ec11 /ansible.html.markdown
parent0601badf4f6557ead604e693a273726c282fce46 (diff)
test markdown
Diffstat (limited to 'ansible.html.markdown')
-rw-r--r--ansible.html.markdown9
1 files changed, 5 insertions, 4 deletions
diff --git a/ansible.html.markdown b/ansible.html.markdown
index 12aefe5f..4409422b 100644
--- a/ansible.html.markdown
+++ b/ansible.html.markdown
@@ -39,10 +39,10 @@ localhost | SUCCESS => {
### Commands
There are few commands you should know about
-`ansible` (to run modules in CLI)
-`ansible-playbook` (to run playbooks)
-`ansible-vault` (to manage secrets)
-`ansible-galaxy` (to install roles from github/galaxy)
+* `ansible` (to run modules in CLI)
+* `ansible-playbook` (to run playbooks)
+* `ansible-vault` (to manage secrets)
+* `ansible-galaxy` (to install roles from github/galaxy)
and other!
```bash
@@ -50,6 +50,7 @@ $ ansible -m shell -a 'date; whoami' localhost #hostname_or_a_group_name
```
The module `command` allows to execute a single command. It will not be processed through the shell, so variables like $HOME and operations like "<", ">", "|", ";" and "&" will not work. Use shell :)
+
We should also mention a module `raw` that sometimes can save the day.
```bash