Some php modules aren't available in debian jessie
This commit is contained in:
parent
17339ffc46
commit
06a57df604
1 changed files with 3 additions and 5 deletions
8
manifest
8
manifest
|
@ -23,17 +23,15 @@ case "$os_version" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Install packages
|
# Install packages
|
||||||
for package in ${php} php-gd php-json php-pgsql php-curl php-mbstring \
|
for package in ${php} ${php}-gd ${php}-json ${php}-pgsql ${php}-curl \
|
||||||
php-intl php-mcrypt php-imagick php-xml php-zip php-bz2 \
|
${php}-intl ${php}-mcrypt ${php}-imagick \
|
||||||
postgresql nginx
|
postgresql nginx
|
||||||
do __package $package --state=present
|
do __package $package --state=present
|
||||||
done
|
done
|
||||||
|
|
||||||
# Nginx
|
# Nginx
|
||||||
require="__package/nginx" __file /etc/nginx/sites-enabled/nextcloud --owner www-data \
|
require="__package/nginx" __file /etc/nginx/sites-enabled/nextcloud --owner www-data \
|
||||||
--group www-data \
|
--group www-data --mode 755 --source "$__type/files/nextcloud.nginx"
|
||||||
--mode 755 --source "$__type/files/nextcloud.nginx" \
|
|
||||||
--state exists
|
|
||||||
|
|
||||||
# Postgres
|
# Postgres
|
||||||
require="__package/postgresql" __postgres_database nextcloud --owner nextcloud
|
require="__package/postgresql" __postgres_database nextcloud --owner nextcloud
|
||||||
|
|
Loading…
Reference in a new issue