From dbfb0d3cc4554b9b7b0f1ba4171736cf5f9449aa Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 19 May 2023 04:10:23 +0900 Subject: [PATCH] Fix typo in service_mgr.py (#80824) faild -> failed --- lib/ansible/module_utils/facts/system/service_mgr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/module_utils/facts/system/service_mgr.py b/lib/ansible/module_utils/facts/system/service_mgr.py index fefdccfb901..3c42fa600f9 100644 --- a/lib/ansible/module_utils/facts/system/service_mgr.py +++ b/lib/ansible/module_utils/facts/system/service_mgr.py @@ -47,7 +47,7 @@ class ServiceMgrFactCollector(BaseFactCollector): # tools must be installed if module.get_bin_path('systemctl'): - # this should show if systemd is the boot init system, if checking init faild to mark as systemd + # this should show if systemd is the boot init system, if checking init failed to mark as systemd # these mirror systemd's own sd_boot test http://www.freedesktop.org/software/systemd/man/sd_booted.html for canary in ["/run/systemd/system/", "/dev/.run/systemd/", "/dev/.systemd/"]: if os.path.exists(canary):