summaryrefslogtreecommitdiff
path: root/lib/ansible/module_utils/common
diff options
context:
space:
mode:
authorJames Cassell <code@james.cassell.me>2019-08-12 14:45:27 -0400
committeransibot <ansibot@users.noreply.github.com>2019-08-12 14:45:27 -0400
commit8bca160363390be79481a6f4b7673cbb5efb9278 (patch)
tree6635c83fbb5a5a9ed41ead349ca4d5d5db0c4112 /lib/ansible/module_utils/common
parent6cb5b67b22c2457e49cdf9e79e9fc8039bd0d8f1 (diff)
downloadansible-8bca160363390be79481a6f4b7673cbb5efb9278.tar.gz
add vfat to selinux special_context_filesystems (#59823)
vfat is the format of the /boot/efi partition on UEFI hosts and does not support SELinux labels add an environment variable for this config option
Diffstat (limited to 'lib/ansible/module_utils/common')
-rw-r--r--lib/ansible/module_utils/common/parameters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/common/parameters.py b/lib/ansible/module_utils/common/parameters.py
index 9b87af8557..a395a2b607 100644
--- a/lib/ansible/module_utils/common/parameters.py
+++ b/lib/ansible/module_utils/common/parameters.py
@@ -28,7 +28,7 @@ PASS_VARS = {
'module_name': ('_name', None),
'no_log': ('no_log', False),
'remote_tmp': ('_remote_tmp', None),
- 'selinux_special_fs': ('_selinux_special_fs', ['fuse', 'nfs', 'vboxsf', 'ramfs', '9p']),
+ 'selinux_special_fs': ('_selinux_special_fs', ['fuse', 'nfs', 'vboxsf', 'ramfs', '9p', 'vfat']),
'shell_executable': ('_shell', '/bin/sh'),
'socket': ('_socket_path', None),
'string_conversion_action': ('_string_conversion_action', 'warn'),