Не могу найти ни ~ / .ansible.cfg, ни etc / ansible - PullRequest
0 голосов
/ 21 ноября 2019

Я установил ansible, используя pip

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
sudo python get-pip.py
sudo pip install ansible

Но я не могу найти ни ~/.ansible.cfg, ни etc/ansible в macOS.

$ansible --version

WARNING: Executing a script that is loading libcrypto in an unsafe way. This will fail in a future version of macOS. Set the LIBRESSL_REDIRECT_STUB_ABORT=1 in the environment to force this into an error.
ansible 2.10.0.dev0
  config file = None
  configured module search path = [u'/Users/nethminiromina/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']
  ansible python module location = /Users/nethminiromina/Library/Python/2.7/lib/python/site-packages/ansible
  executable location = /usr/local/bin/ansible
  python version = 2.7.16 (default, Oct 17 2019, 17:14:30) [GCC 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.32.4) (-macos10.15-objc-s

Как найти или настроить файл инвентаря?

1 Ответ

0 голосов
/ 21 ноября 2019

Q: «Не удается найти etc / ansible»

A: pip show -f ansible должно отображать установленные файлы. Если файл конфигурации отсутствует, создайте его. См. Настройка Ansible .

Q: «Как найти или настроить файл инвентаризации?»

A: См. Где хранить файл хоста Ansible в Mac OS X .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...