Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
title작업디렉터리 구조 및 Config File위치
[devops@work-vm devops-lab]$ pwd
/home/devops/devops-lab
[devops@work-vm devops-lab]$ tree
.
├── ansible.cfg
└── inventory
    └── inventory

1 directory, 2 files
[devops@work-vm devops-lab]$
[devops@work-vm devops-lab]$ ansible --version
ansible 2.9.1
  config file = /home/devops/devops-lab/ansible.cfg
  configured module search path = [u'/home/devops/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/site-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.5 (default, Jul 13 2018, 13:06:57) [GCC 4.8.5 20150623 (Red Hat 4.8.5-28)]
[devops@work-vm devops-lab]$


Code Blockinfo
titleansible.cfg
linenumberstrue
Config File

[devops@work-vm

devops-lab]$

cat

cat ansible.cfg

Code Block
titleansible.cfg
linenumberstrue
[defaults]
inventory = inventory
remote_user = devops
ask_pass = false

[privilege_escalation]
become=false
become_method=sudo
become_user=root
become_ask_pass=false



Code Block
titleansible.cfg
linenumberstrue


Code Block
titleinventory/inventory
linenumberstrue
[devops@work-vm devops-lab]$ cat inventory/inventory
[web]
web01-vm
web02-vm
web03-vm

...