* Fix in display_init plugin for larger field

* check_linux_httpd_status plugin: added support for configuration 
parameters 'httpd_path' and changed meaning of 'httpd_bin' in order to 
support debian/ubuntu distros using the 'apache(2)' binary
This commit is contained in:
2020-10-10 17:15:30 +02:00
parent e3da7e7b94
commit 13bc933e89
3 changed files with 91 additions and 27 deletions
@@ -17,10 +17,16 @@ log_healthy="no"
# [release >20191101]
check_type="auto"
# specify name of the httpd binary
# Format: httpd|apache|apache2
# [default: httpd]
# [release >20201010]
httpd_bin="httpd"
# specify custom path to the httpd binary
# [default: null]
# [release >20191101]
httpd_bin=""
# [release >20201010]
httpd_path=""
#******************************************************************************