test markdown

This commit is contained in:
sirkubax 2017-09-22 22:29:12 +02:00
parent 0601badf4f
commit 6ade03b92a

View File

@ -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