initial commit

This commit is contained in:
Jose Diaz-Gonzalez
2015-08-23 19:17:51 -04:00
commit c64b7c07be
8 changed files with 505 additions and 0 deletions

14
dependencies Executable file
View File

@@ -0,0 +1,14 @@
#!/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 redis-tools
;;
opensuse)
zypper -q in -y redis-tools
;;
esac