This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-playbook/dependencies

13 lines
231 B
Plaintext
Raw Normal View History

2020-03-19 00:13:54 +00:00
#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
export DEBIAN_FRONTEND=noninteractive
2020-03-19 00:16:03 +00:00
if ! command -v "ansible" &>/dev/null; then
echo "-----> installing ansible"
2020-03-19 00:13:54 +00:00
apt install --force-yes -qq -y ansible
fi