Skip to content

Commit 277d70f

Browse files
committed
Release 7.0.8 - See CHANGELOG.md
1 parent 1876b23 commit 277d70f

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/workflows/manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ jobs:
233233
234234
case ${BRANCH} in
235235
"main" | "master" )
236-
BRANCHTAG="${DOCKER_IMAGE}:${PHP_BASE},${DOCKER_IMAGE}:${PHP_BASE}-${OS},${DOCKER_IMAGE}:${PHP_BASE}-${OS}_${DISTRIB},${DOCKER_IMAGE}:${PHP_BASE}-${OS}_${DISTRIB}-latest,${DOCKER_IMAGE}:${OS}-${PHP_BASE},${DOCKER_IMAGE}:${OS}-${PHP_BASE}-${DISTRIB},${DOCKER_IMAGE}:${OS}-${PHP_BASE}-${DISTRIB}-latest,${DOCKER_IMAGE}:${OS},${DOCKER_IMAGE}:${PHP_BASE}-latest,${DOCKER_IMAGE}:latest
236+
BRANCHTAG="${DOCKER_IMAGE}:${PHP_BASE},${DOCKER_IMAGE}:${PHP_BASE}-${OS},${DOCKER_IMAGE}:${PHP_BASE}-${OS}_${DISTRIB},${DOCKER_IMAGE}:${PHP_BASE}-${OS}_${DISTRIB}-latest,${DOCKER_IMAGE}:${OS}-${PHP_BASE},${DOCKER_IMAGE}:${OS}-${PHP_BASE}-${DISTRIB},${DOCKER_IMAGE}:${OS}-${PHP_BASE}-${DISTRIB}-latest,${DOCKER_IMAGE}:${OS},${DOCKER_IMAGE}:${PHP_BASE}-latest,${DOCKER_IMAGE}:latest"
237237
;;
238238
"develop" )
239239
BRANCHTAG="${DOCKER_IMAGE}:develop"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 7.0.8 2022-08-08 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix for Kitchen Sink mode showing pathnames on print_notice command
5+
- Stop using log_length parameter for < PHP-FPM 7.3
6+
7+
18
## 7.0.7 2022-07-18 <dave at tiredofit dot ca>
29

310
### Changed

install/assets/functions/20-php-fpm

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ phpfpm_bootstrap() {
1414
php_prefix="/etc/php/$(php -v | head -n 1 | awk '{print $2}' | cut -c 1-3)/"
1515
;;
1616
esac
17+
18+
case "${PHP_BASE}" in
19+
"5.6" | "7.0" | "7.1" | "7.2" )
20+
sed "/log_limit =/d" /assets/php-fpm/fpm/php-fpm.conf
21+
;;
22+
esac
1723
}
1824

1925
phpfpm_configure_authentication() {
@@ -139,7 +145,7 @@ EOF
139145
silent php-ext enable all
140146
php_actual_plugins_enabled="${php_actual_plugins_enabled} ${f/.ini/}"
141147
done
142-
print_notice "PHP-FPM Preparing to start with the following plugins enabled: ${php_actual_plugins_enabled}"
148+
print_notice "PHP-FPM Preparing to start with the following plugins enabled: $(echo ${php_actual_plugins_enabled} | sed 's|/etc/php7/mods-available/||g' | sed 's| |,|g' )"
143149
fi
144150
}
145151

0 commit comments

Comments
 (0)