This repository has been archived on 2020-05-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dokku-ansible-playbook/dependencies
T
2020-03-19 02:00:49 +01:00

11 lines
219 B
Bash
Executable File

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