fix some leftover changes from monit_exec_path -> monitrc_path

This commit is contained in:
Ahmed Muawia Khan 2018-07-26 16:38:55 +02:00
parent c3e1745dff
commit 95f3c2d928

View File

@ -34,7 +34,7 @@ function usage() {
Absolute path to the directory where all the logs for processes
monitored by Monit are stored. (default: ${monit_log_path})
ENV[MONIT_EXEC_PATH] || --monit-exec-path PATH
ENV[MONITRC_PATH] || --monitrc-path PATH
Absolute path to the monit control file(monitrc). (default: ${monitrc_path})
@ -59,7 +59,7 @@ while [[ $# -gt 0 ]]; do
monit_log_path="$2"
shift
;;
--monit-exec-path)
--monitrc-path)
monitrc_path="$2"
shift
;;