diff options
author | Christos Chatzaras <chris@cretaforce.gr> | 2025-03-14 08:47:00 +0100 |
---|---|---|
committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2025-03-14 08:55:45 +0100 |
commit | 487ee7109c5cdb52157e076adb45acb76462db98 (patch) | |
tree | a3039cd78efe968def62a6a5d9a3c521b1b3a709 /lang/php81/files/php_fpm.in | |
parent | security/vuxml: Document PHP vulnerabilities (diff) |
lang/php81: Update version 8.1.31=>8.1.32
- Make rc script prefix safe for profiles [1]
Changelog: https://www.php.net/ChangeLog-8.php#8.1.32
PR: 285379, 284468 [1]
Reported by: andrew@neptune-one.net [1]
Co-authored-by: Andrew Fyfe <andrew@neptune-one.net>
Diffstat (limited to 'lang/php81/files/php_fpm.in')
-rw-r--r-- | lang/php81/files/php_fpm.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/php81/files/php_fpm.in b/lang/php81/files/php_fpm.in index 12253b537b2e..72c26bc40f55 100644 --- a/lang/php81/files/php_fpm.in +++ b/lang/php81/files/php_fpm.in @@ -53,7 +53,7 @@ else if [ "x${php_fpm_profiles}" != "x" -a "x$1" != "x" ]; then for profile in ${php_fpm_profiles}; do echo "===> php_fpm profile: ${profile}" - /usr/local/etc/rc.d/php-fpm $1 ${profile} + %%PREFIX%%/etc/rc.d/php_fpm $1 ${profile} retcode="$?" if [ "0${retcode}" -ne 0 ]; then failed="${profile} (${retcode}) ${failed:-}" |