3f22f79e73
* Ensure -k is set to delegated hosts without a pass * Fix up some broken tests * Update task_executor.py one possible fix, the other is updating winrm to normalize on 'password' like the other connection plugins * Add alias for winrm and fix incorrect assumption * Make sure aliases are used for keyword options * Conditionally run test if sshpass is present, fix sanity Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>
9 lines
220 B
Bash
Executable file
9 lines
220 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ux
|
|
|
|
echo "Checking if sshpass is present"
|
|
which sshpass 2>&1 || exit 0
|
|
echo "sshpass is present, continuing with test"
|
|
|
|
sshpass -p my_password ansible-playbook -i inventory.ini test.yml -k "$@"
|