initial commit

This commit is contained in:
Jose Diaz-Gonzalez
2015-08-23 18:56:23 -04:00
commit e344e35144
8 changed files with 520 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 postgresql-client
;;
opensuse)
zypper -q in -y postgresql-client
;;
esac