From fe6848baddaf5a5e872e91b428cdec3f9b1bc1cb Mon Sep 17 00:00:00 2001 From: Phil Date: Sat, 15 Feb 2020 14:51:06 +0000 Subject: [PATCH] sefcontext: fix fatal failure for socket file type (#65690) fix #65689 --- lib/ansible/modules/system/sefcontext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/system/sefcontext.py b/lib/ansible/modules/system/sefcontext.py index dfe846e7f2c..33e3fd2e40e 100644 --- a/lib/ansible/modules/system/sefcontext.py +++ b/lib/ansible/modules/system/sefcontext.py @@ -148,7 +148,7 @@ option_to_file_type_str = dict( f='regular file', l='symbolic link', p='named pipe', - s='socket file', + s='socket', )