We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a60282 commit 35db9d6Copy full SHA for 35db9d6
ansible-basics/README.asciidoc
@@ -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