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

12 lines
205 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
export DEBIAN_FRONTEND=noninteractive
if ! command -v "ansible-playbook" &>/dev/null; then
apt install --force-yes -qq -y ansible
fi