mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
18 lines
613 B
Bash
Executable File
18 lines
613 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$DOKKU_DISTRO" in
|
|
ubuntu)
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
[[ -z "$CIRCLECI" ]] && apt-get install -qq -y software-properties-common python-software-properties
|
|
[[ -n "$CIRCLECI" ]] && aptitude install -q -y software-properties-common python-software-properties
|
|
add-apt-repository -y ppa:nginx/stable
|
|
apt-get update
|
|
apt-get install -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" --force-yes -qq -y nginx dnsutils
|
|
;;
|
|
|
|
opensuse)
|
|
zypper -q in -y nginx bind-utils
|
|
;;
|
|
esac
|