Skip to content

Commit eb05a7d

Browse files
committed
Release 7.4.1 - See CHANGELOG.md
1 parent 1c1a070 commit eb05a7d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.4.1 2023-01-16 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix for 7.4.0
5+
6+
17
## 7.4.0 2023-01-15 <dave at tiredofit dot ca>
28

39
### Added

install/assets/functions/20-php-fpm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,15 +236,15 @@ phpfpm_configure_server() {
236236
-e "s#opcache.memory_consumption=.*#opcache.memory_consumption=${PHP_OPCACHE_MEM_SIZE}#g" \
237237
-e "s#opcache.interned_strings_buffer=.*#opcache.interned_strings_buffer=${PHP_OPCACHE_INTERNED_STRINGS_BUFFER}#g" \
238238
-e "s#opcache.max_accelerated_files=.*#max_accelerated_files=${PHP_OPCACHE_MAX_ACCELERATED_FILES}#g" \
239-
-e "s#opcache.revalidate_freq=.*#revalidate_freq=${PHP_OPCACHE_REVALIDATE_FREQ}#g"
239+
-e "s#opcache.revalidate_freq=.*#revalidate_freq=${PHP_OPCACHE_REVALIDATE_FREQ}#g" \
240240
/assets/php-fpm/mods-available/opcache.ini
241241

242242
if [ "${PHP_BASE:0:1}" = "7" ] ; then
243243
sed -i "/opcache.jit/d" /assets/php-fpm/mods-available/opcache.ini
244244
else
245245
sed -i \
246246
-e "s#opcache.jit_buffer_size=.*#opcache.jit_buffer_size=${PHP_OPCACHE_JIT_BUFFER_SIZE}#g" \
247-
-e "s#opcache.jit=.*#opcache.jit=${PHP_OPCACHE_JIT_MODE}#g"
247+
-e "s#opcache.jit=.*#opcache.jit=${PHP_OPCACHE_JIT_MODE}#g" \
248248
/assets/php-fpm/mods-available/opcache.ini
249249
fi
250250

0 commit comments

Comments
 (0)