8 lines
151 B
Bash
8 lines
151 B
Bash
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
/usr/bin/python -m pip install -r tests/requirements.txt
|
||
|
mkdir -p /.ssh
|
||
|
mkdir -p $HOME/.ssh
|
||
|
ansible-playbook --version
|