parent
db9233d1e7
commit
f07982daf5
2 changed files with 3 additions and 3 deletions
|
@ -2,11 +2,9 @@ notifications: false
|
||||||
targets:
|
targets:
|
||||||
centos-6:
|
centos-6:
|
||||||
dependencies:
|
dependencies:
|
||||||
- nginx
|
|
||||||
- postgresql-server
|
- postgresql-server
|
||||||
centos-7:
|
centos-7:
|
||||||
dependencies:
|
dependencies:
|
||||||
- nginx
|
|
||||||
- postgresql-server
|
- postgresql-server
|
||||||
debian-8:
|
debian-8:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|
|
@ -5,8 +5,10 @@
|
||||||
|
|
||||||
PATH=/opt/zammad/bin:/opt/zammad/vendor/bundle/bin:/sbin:/bin:/usr/sbin:/usr/bin:
|
PATH=/opt/zammad/bin:/opt/zammad/vendor/bundle/bin:/sbin:/bin:/usr/sbin:/usr/bin:
|
||||||
|
|
||||||
# install epel-release on centos (needed for nginx)
|
# install epel-release & nginx on centos because it does not work via dependencies
|
||||||
if [ -n "$(which yum)" ]; then
|
if [ -n "$(which yum)" ]; then
|
||||||
yum install -y epel-release
|
yum install -y epel-release
|
||||||
|
|
||||||
|
yum install -y nginx
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue