mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
73 lines
2.9 KiB
Bash
73 lines
2.9 KiB
Bash
#!/bin/bash
|
|
|
|
# Declare the actual php version to use.
|
|
# A packager willing to use another version of php can override the variable into its _common.sh.
|
|
YNH_DEFAULT_PHP_VERSION=7.0
|
|
YNH_PHP_VERSION=${YNH_PHP_VERSION:-YNH_DEFAULT_PHP_VERSION}
|
|
|
|
# Create a dedicated php-fpm config
|
|
#
|
|
# usage: ynh_add_fpm_config [--phpversion=7.X]
|
|
# | arg: -v, --phpversion - Version of php to use.
|
|
#
|
|
# Requires YunoHost version 2.7.2 or higher.
|
|
ynh_add_fpm_config () {
|
|
# Declare an array to define the options of this helper.
|
|
local legacy_args=v
|
|
declare -Ar args_array=( [v]=phpversion= )
|
|
local phpversion
|
|
# Manage arguments with getopts
|
|
ynh_handle_getopts_args "$@"
|
|
|
|
# Set the default PHP-FPM version by default
|
|
phpversion="${phpversion:-$YNH_PHP_VERSION}"
|
|
|
|
local fpm_config_dir="/etc/php/$phpversion/fpm"
|
|
local fpm_service="php${phpversion}-fpm"
|
|
# Configure PHP-FPM 5 on Debian Jessie
|
|
if [ "$(ynh_get_debian_release)" == "jessie" ]; then
|
|
fpm_config_dir="/etc/php5/fpm"
|
|
fpm_service="php5-fpm"
|
|
fi
|
|
ynh_app_setting_set --app=$app --key=fpm_config_dir --value="$fpm_config_dir"
|
|
ynh_app_setting_set --app=$app --key=fpm_service --value="$fpm_service"
|
|
ynh_app_setting_set --app=$app --key=phpversion --value=$phpversion
|
|
finalphpconf="$fpm_config_dir/pool.d/$app.conf"
|
|
ynh_backup_if_checksum_is_different --file="$finalphpconf"
|
|
cp ../conf/php-fpm.conf "$finalphpconf"
|
|
ynh_replace_string --match_string="__NAMETOCHANGE__" --replace_string="$app" --target_file="$finalphpconf"
|
|
ynh_replace_string --match_string="__FINALPATH__" --replace_string="$final_path" --target_file="$finalphpconf"
|
|
ynh_replace_string --match_string="__USER__" --replace_string="$app" --target_file="$finalphpconf"
|
|
ynh_replace_string --match_string="__PHPVERSION__" --replace_string="$phpversion" --target_file="$finalphpconf"
|
|
chown root: "$finalphpconf"
|
|
ynh_store_file_checksum --file="$finalphpconf"
|
|
|
|
if [ -e "../conf/php-fpm.ini" ]
|
|
then
|
|
echo "Packagers ! Please do not use a separate php ini file, merge your directives in the pool file instead." >&2
|
|
finalphpini="$fpm_config_dir/conf.d/20-$app.ini"
|
|
ynh_backup_if_checksum_is_different "$finalphpini"
|
|
cp ../conf/php-fpm.ini "$finalphpini"
|
|
chown root: "$finalphpini"
|
|
ynh_store_file_checksum "$finalphpini"
|
|
fi
|
|
ynh_systemd_action --service_name=$fpm_service --action=reload
|
|
}
|
|
|
|
# Remove the dedicated php-fpm config
|
|
#
|
|
# usage: ynh_remove_fpm_config
|
|
#
|
|
# Requires YunoHost version 2.7.2 or higher.
|
|
ynh_remove_fpm_config () {
|
|
local fpm_config_dir=$(ynh_app_setting_get --app=$app --key=fpm_config_dir)
|
|
local fpm_service=$(ynh_app_setting_get --app=$app --key=fpm_service)
|
|
# Assume default php version if not set
|
|
if [ -z "$fpm_config_dir" ]; then
|
|
fpm_config_dir="/etc/php/$YNH_DEFAULT_PHP_VERSION/fpm"
|
|
fpm_service="php$YNH_DEFAULT_PHP_VERSION-fpm"
|
|
fi
|
|
ynh_secure_remove --file="$fpm_config_dir/pool.d/$app.conf"
|
|
ynh_secure_remove --file="$fpm_config_dir/conf.d/20-$app.ini" 2>&1
|
|
ynh_systemd_action --service_name=$fpm_service --action=reload
|
|
}
|