You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/vault
Adrian Likins ae3d7fb29e Fix vault reading from stdin (avoid realpath() on non-links) (#23583)
* Fix vault reading from stdin (avoid realpath() on non-links)

os.path.realpath() is used to find the target of file paths that
are symlinks so vault operations happen directly on the target.

However, in addition to resolving symlinks, realpath() also returns
a full path. when reading from stdin, vault cli uses '-' as a special
file path so VaultEditor() will replace with stdin.
realpath() was expanding '-' with the CWD to something like
'/home/user/playbooks/-' causing errors like:

        ERROR! [Errno 2] No such file or directory: u'/home/user/ansible/-'

Fix is to specialcase '-' to not use realpath()

Fixes #23567

* to_text decrypt output when writing to stdout
7 years ago
..
roles added docs for vault and made trigger shorter: !vault (#20985) 8 years ago
aliases Initial ansible-test implementation. (#18556) 8 years ago
runme.sh Fix vault reading from stdin (avoid realpath() on non-links) (#23583) 7 years ago
test_vault.yml Split integration tests out from Makefile. (#17976) 8 years ago
test_vault_embedded.yml Split integration tests out from Makefile. (#17976) 8 years ago
test_vaulted_inventory.yml add a intg test for vault encrypted inventory (#18550) 8 years ago
vault-password Split integration tests out from Makefile. (#17976) 8 years ago
vault-secret.txt Split integration tests out from Makefile. (#17976) 8 years ago
vaulted.inventory add a intg test for vault encrypted inventory (#18550) 8 years ago