mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
db6cc60352
* Start of migration to argparse * various fixes and improvements * Linting fixes * Test fixes * Fix vault_password_files * Add PrependAction for argparse * A bunch of additional tweak/fixes * Fix ansible-config tests * Fix man page generation * linting fix * More adhoc pattern fixes * Add changelog fragment * Add support for argcomplete * Enable argcomplete global completion * Rename PrependAction to PrependListAction to better describe what it does * Add documentation for installing and configuring argcomplete * Address rebase issues * Fix display encoding for vault * Fix line length * Address rebase issues * Handle rebase issues * Use mutually exclusive group instead of handling manually * Fix rebase issues * Address rebase issue * Update version added for argcomplete support * -e must be given a value * ci_complete
17 lines
643 B
Bash
Executable file
17 lines
643 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
ansible --version
|
|
ansible --help
|
|
|
|
ansible testhost -i ../../inventory -m ping "$@"
|
|
ansible testhost -i ../../inventory -m setup "$@"
|
|
|
|
ansible-config view -c ./ansible-testé.cfg | grep 'remote_user = admin'
|
|
ansible-config dump -c ./ansible-testé.cfg | grep 'DEFAULT_REMOTE_USER([^)]*) = admin\>'
|
|
ANSIBLE_REMOTE_USER=administrator ansible-config dump| grep 'DEFAULT_REMOTE_USER([^)]*) = administrator\>'
|
|
ansible-config list | grep 'DEFAULT_REMOTE_USER'
|
|
|
|
# 'view' command must fail when config file is missing
|
|
ansible-config view -c ./ansible-non-existent.cfg && exit 1 || echo 'Failure is expected'
|