From 2b1f0a79e7560d917ef8cefec76c05cba0926efb Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Fri, 16 Apr 2021 18:48:04 -0500 Subject: [PATCH] Bugfix: properly configure example. The reason why controller is attempting to execute "/var/run/sshd.pid" is not because it is incorrectly attempting to process the "use" as a start. Instead, it is because it is properly attempting to do so because it is being told to. Oops! This is just a simple misconfiguration and not a bug in the code. A bug in the configuration. --- level_3/controller/data/settings/example/rules/service/sshd.rule | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/controller/data/settings/example/rules/service/sshd.rule b/level_3/controller/data/settings/example/rules/service/sshd.rule index 71d8122..f044d7f 100644 --- a/level_3/controller/data/settings/example/rules/service/sshd.rule +++ b/level_3/controller/data/settings/example/rules/service/sshd.rule @@ -10,4 +10,4 @@ setting: service: use /var/run/sshd.pid - start /var/run/sshd.pid + start /usr/sbin/sshd -- 1.8.3.1