You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.
but subsequently only $process is used instead of $real_process.
I assume the intention was to use $real_process so you could define a check like so, without explicity defining "process"
monit::checkpid { "httpd": }
The text was updated successfully, but these errors were encountered:
Yes , that's something to fix, but I think it has to be fixed also the order in the above part, I hink it should be:
$real_process = $process ? {
'' => $name,
default => $process,
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
checkpid.pp now has this
$real_process = $process ? {
'' => $process,
default => $name,
}
but subsequently only $process is used instead of $real_process.
I assume the intention was to use $real_process so you could define a check like so, without explicity defining "process"
monit::checkpid { "httpd": }
The text was updated successfully, but these errors were encountered: