1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/moodle_ynh.git synced 2024-09-03 19:46:23 +02:00

Fix PHPVERSION

This commit is contained in:
Kay0u 2020-03-24 15:30:50 +01:00
parent f5febd6fec
commit 6974a2d123
No known key found for this signature in database
GPG key ID: 7FF262C033518333
3 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ group = __USER__
; (IPv6 and IPv4-mapped) on a specific port; ; (IPv6 and IPv4-mapped) on a specific port;
; '/path/to/unix/socket' - to listen on a unix socket. ; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory. ; Note: This value is mandatory.
listen = /var/run/php/php7.3-fpm-__NAMETOCHANGE__.sock listen = /var/run/php/php__PHPVERSION__-fpm-__NAMETOCHANGE__.sock
; Set listen(2) backlog. ; Set listen(2) backlog.
; Default Value: 511 (-1 on FreeBSD and OpenBSD) ; Default Value: 511 (-1 on FreeBSD and OpenBSD)

View file

@ -109,7 +109,7 @@ ynh_system_user_create --username=$app
ynh_script_progression --message="Configuring php-fpm..." --weight=1 ynh_script_progression --message="Configuring php-fpm..." --weight=1
# Create a dedicated php-fpm config # Create a dedicated php-fpm config
ynh_add_fpm_config --phpversion="7.3" ynh_add_fpm_config --phpversion="$YNH_PHP_VERSION"
#================================================= #=================================================
# SPECIFIC SETUP # SPECIFIC SETUP

View file

@ -64,7 +64,7 @@ ynh_script_progression --message="Removing php-fpm configuration..." --weight=20
# Remove the dedicated php-fpm config # Remove the dedicated php-fpm config
ynh_remove_fpm_config ynh_remove_fpm_config
ynh_remove_php "7.3" ynh_remove_php "$YNH_PHP_VERSION"
#================================================= #=================================================
# SPECIFIC REMOVE # SPECIFIC REMOVE