From c343ea493ef74ef1024e52f7008b2b4afb8ea4ec Mon Sep 17 00:00:00 2001 From: ZNeumann Date: Wed, 22 Mar 2023 11:59:31 -0600 Subject: [PATCH] fix(installer): do not enforce php 8.2 zts binaries (#647) --- agent/newrelic-install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/agent/newrelic-install.sh b/agent/newrelic-install.sh index 58f33180d..f983df585 100755 --- a/agent/newrelic-install.sh +++ b/agent/newrelic-install.sh @@ -343,7 +343,11 @@ check_file "${ilibdir}/scripts/newrelic.ini.template" for pmv in "20121212" "20131226" "20151012" "20160303" "20170718" \ "20180731" "20190902" "20200930" "20210902" "20220829"; do check_file "${ilibdir}/agent/${arch}/newrelic-${pmv}.so" - # remove following line when ZTS removed from releases +done +# remove following lines when ZTS removed from releases +# 8.2 does not ship with zts +for pmv in "20121212" "20131226" "20151012" "20160303" "20170718" \ +"20180731" "20190902" "20200930" "20210902"; do check_file "${ilibdir}/agent/${arch}/newrelic-${pmv}-zts.so" done