3
0
mirror of https://github.com/rvalitov/zabbix-php-fpm.git synced 2023-11-05 03:30:27 +01:00

[add] info about required package name for cgi-fcgi utility to make it easier for the user to understand what package is missing, helps #53

This commit is contained in:
Ramil Valitov 2020-09-20 21:10:42 +03:00
parent bd92d4b4f9
commit 790edf8985
No known key found for this signature in database
GPG Key ID: 2AB186DABDFE1914
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ if [[ ! -x $S_SLEEP ]]; then
exit 1 exit 1
fi fi
if [[ ! -x $S_FCGI ]]; then if [[ ! -x $S_FCGI ]]; then
echo "Utility 'cgi-fcgi' not found. Please, install it first." echo "Utility 'cgi-fcgi' not found. Please, install it first. The required package's name depends on your OS type and version and can be 'libfcgi-bin' or 'libfcgi0ldbl' or 'fcgi'."
exit 1 exit 1
fi fi

View File

@ -7,7 +7,7 @@ S_FCGI=$(type -P cgi-fcgi)
S_GREP=$(type -P grep) S_GREP=$(type -P grep)
if [[ ! -x $S_FCGI ]]; then if [[ ! -x $S_FCGI ]]; then
echo "Utility 'cgi-fcgi' not found. Please, install it first." echo "Utility 'cgi-fcgi' not found. Please, install it first. The required package's name depends on your OS type and version and can be 'libfcgi-bin' or 'libfcgi0ldbl' or 'fcgi'."
exit 1 exit 1
fi fi