Skip to content

Commit 7a69613

Browse files
Fix auditd container monit startup issue (#21979)
Why I did it new added auditd container failed to be launched due to monit blocker. How I did it Skip the unexpected container check logic How to verify it Verify via auditd image
1 parent 8ea1c07 commit 7a69613

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

files/image_config/monit/container_checker

-5
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,6 @@ def main():
216216
print("Expected containers not running: " + ", ".join(not_running_containers))
217217
sys.exit(3)
218218

219-
unexpected_running_containers = current_running_containers.difference(expected_running_containers)
220-
if unexpected_running_containers:
221-
print("Unexpected running containers: " + ", ".join(unexpected_running_containers))
222-
sys.exit(4)
223-
224219

225220
if __name__ == "__main__":
226221
main()

0 commit comments

Comments
 (0)