Update comment to not indicate check is run for docker daemon

Removes comment from daemons function that previously indicated that a
check was being run to make sure docker daemon was running.

Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
This commit is contained in:
hasheddan 2020-11-17 08:31:26 -06:00
parent 0c97340905
commit d2f7cea12a
No known key found for this signature in database
GPG Key ID: BD68BC686A14C271

View File

@ -227,7 +227,7 @@ func firewall() error {
return printSuccess("Firewall IPTables Check %s", success)
}
// daemons checks that the required node programs are running: kubelet, kube-proxy, and docker
// daemons checks that the required node programs are running: kubelet and kube-proxy
func daemons() error {
if exec.Command("pgrep", "-f", "kubelet").Run() != nil {
return printError("Daemon Check %s: kubelet process not found", failed)