initial commit
This commit is contained in:
14
dependencies
Executable file
14
dependencies
Executable 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
|
||||
Reference in New Issue
Block a user