mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
9 lines
324 B
Bash
9 lines
324 B
Bash
#!/usr/bin/env bash
|
|
# Usage: source ../setup_paramiko/setup.sh
|
|
|
|
set -eux
|
|
|
|
source virtualenv.sh # for pip installs, if needed, otherwise unused
|
|
ansible-playbook ../setup_paramiko/install.yml -i ../setup_paramiko/inventory "$@"
|
|
trap 'ansible-playbook ../setup_paramiko/uninstall.yml -i ../setup_paramiko/inventory "$@"' EXIT
|