Files
dokku-mongo/dependencies
Jose Diaz-Gonzalez 7652f45d99 initial commit
2015-08-23 21:42:15 -04:00

15 lines
360 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
case "$DOKKU_DISTRO" in
ubuntu)
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes -qq -y mongodb-clients
;;
opensuse)
zypper -q in -y mongodb-clients
;;
esac