Skip to content

Commit 35db9d6

Browse files
committed
Ansible basics.
1 parent 2a60282 commit 35db9d6

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

ansible-basics/README.asciidoc

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Ansible Basics
2+
3+
Install/configure software to remote machines.
4+
5+
6+
#### Prerequisites
7+
8+
- Install pip or pip3.
9+
10+
11+
#### Install
12+
13+
```
14+
# One way of installing Ansible
15+
$ pip3 install --user ansible
16+
```
17+
18+
19+
#### Verify
20+
21+
```
22+
$ ansible --version
23+
24+
ansible 2.7.6
25+
config file = None
26+
configured module search path = ['/Users/mossaddeque/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
27+
ansible python module location = /Users/mossaddeque/Library/Python/3.7/lib/python/site-packages/ansible
28+
executable location = /usr/local/bin/ansible
29+
python version = 3.7.7 (default, Mar 10 2020, 15:43:33) [Clang 11.0.0 (clang-1100.0.33.17)]
30+
```
31+

0 commit comments

Comments
 (0)