Initial ansible status on Centos8

Home

1 Status of ansible -vvv asdf command

(venv-pandas) zintis@c8host ~[1006] $
ansible -vvv asdf
ansible 2.9.7
  config file = None
  configured module search path = ['/home/zintis/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /home/zintis/venv-pandas/lib/python3.8/site-packages/ansible
  executable location = /home/zintis/venv-pandas/bin/ansible
  python version = 3.8.2 (default, Apr 30 2020, 01:58:05) [GCC 8.3.1 20190507 (Red Hat 8.3.1-4)]
No config file found; using defaults
host_list declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
script declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
auto declined parsing /etc/ansible/hosts as it did not pass its verify_file() method
Parsed /etc/ansible/hosts inventory source with ini plugin
[WARNING]: Could not match supplied host pattern, ignoring: asdf
[WARNING]: No hosts matched, nothing to do


usage: ansible [-h] [--version] [-v] [-b] [--become-method BECOME_METHOD] [--become-user BECOME_USER] [-K] [-i INVENTORY]
	       [--list-hosts] [-l SUBSET] [-P POLL_INTERVAL] [-B SECONDS] [-o] [-t TREE] [-k] [--private-key PRIVATE_KEY_FILE]
	       [-u REMOTE_USER] [-c CONNECTION] [-T TIMEOUT] [--ssh-common-args SSH_COMMON_ARGS]
	       [--sftp-extra-args SFTP_EXTRA_ARGS] [--scp-extra-args SCP_EXTRA_ARGS] [--ssh-extra-args SSH_EXTRA_ARGS] [-C]
	       [--syntax-check] [-D] [-e EXTRA_VARS] [--vault-id VAULT_IDS]
	       [--ask-vault-pass | --vault-password-file VAULT_PASSWORD_FILES] [-f FORKS] [-M MODULE_PATH]
	       [--playbook-dir BASEDIR] [-a MODULE_ARGS] [-m MODULE_NAME]
	       pattern



Define and run a single task 'playbook' against a set of hosts

positional arguments:
  pattern               host pattern

optional arguments:
  --ask-vault-pass      ask for vault password
  --list-hosts          outputs a list of matching hosts; does not execute anything else
  --playbook-dir BASEDIR
			Since this tool does not use playbooks, use this as a substitute playbook directory.This sets the
			relative path for many features including roles/ group_vars/ etc.
  --syntax-check        perform a syntax check on the playbook, but do not execute it
  --vault-id VAULT_IDS  the vault identity to use
  --vault-password-file VAULT_PASSWORD_FILES
			vault password file
  --version             show program's version number, config file location, configured module search path, module location,
			executable location and exit
  -B SECONDS, --background SECONDS
			run asynchronously, failing after X seconds (default=N/A)
  -C, --check           don't make any changes; instead, try to predict some of the changes that may occur
  -D, --diff            when changing (small) files and templates, show the differences in those files; works great with
			--check
  -M MODULE_PATH, --module-path MODULE_PATH
			prepend colon-separated path(s) to module library
			(default=~/.ansible/plugins/modules:/usr/share/ansible/plugins/modules)
  -P POLL_INTERVAL, --poll POLL_INTERVAL
			set the poll interval if using -B (default=15)
  -a MODULE_ARGS, --args MODULE_ARGS
			module arguments
  -e EXTRA_VARS, --extra-vars EXTRA_VARS
			set additional variables as key=value or YAML/JSON, if filename prepend with @
  -f FORKS, --forks FORKS
			specify number of parallel processes to use (default=5)
  -h, --help            show this help message and exit
  -i INVENTORY, --inventory INVENTORY, --inventory-file INVENTORY
			specify inventory host path or comma separated host list. --inventory-file is deprecated
  -l SUBSET, --limit SUBSET
			further limit selected hosts to an additional pattern
  -m MODULE_NAME, --module-name MODULE_NAME
			module name to execute (default=command)
  -o, --one-line        condense output
  -t TREE, --tree TREE  log output to this directory
  -v, --verbose         verbose mode (-vvv for more, -vvvv to enable connection debugging)

1.1 Home