Update manifest.toml

This commit is contained in:
Tagada 2023-06-10 22:38:37 +02:00 committed by GitHub
parent b5f4e50ff9
commit 1d83be3e56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,12 +72,19 @@ ram.runtime = "50M"
packages_from_raw_bash = """
if [[ "$database" == "mysql" ]]; then
echo "mariadb-server"
elif [[ "$database" == "postgresql" ]]; then
if [[ "$phpversion" != none ]]; then
echo "php${phpversion}-mysql"
fi
elif [[ "$database" == "postgresql" ]]; then
echo "postgresql postgresql-contrib"
if [[ "$phpversion" != none ]]; then
echo "php${phpversion}-pgsql"
fi
fi
if [[ "$phpversion" != none ]]
then
echo "php${phpversion}-fpm php${phpversion}-mysql"
if [[ "$phpversion" != none ]]; then
echo "php${phpversion}-fpm"
fi
"""