mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-05 15:59:09 -07:00
Avoid using an object if it does not exists (#19058)
This commit is contained in:
parent
28a12e8b27
commit
9a075b5917
1 changed files with 11 additions and 10 deletions
|
@ -103,7 +103,8 @@ except ImportError:
|
||||||
HAVE_SEOBJECT=False
|
HAVE_SEOBJECT=False
|
||||||
|
|
||||||
### Add missing entries (backward compatible)
|
### Add missing entries (backward compatible)
|
||||||
seobject.file_types.update(dict(
|
if HAVE_SEOBJECT:
|
||||||
|
seobject.file_types.update(dict(
|
||||||
a = seobject.SEMANAGE_FCONTEXT_ALL,
|
a = seobject.SEMANAGE_FCONTEXT_ALL,
|
||||||
b = seobject.SEMANAGE_FCONTEXT_BLOCK,
|
b = seobject.SEMANAGE_FCONTEXT_BLOCK,
|
||||||
c = seobject.SEMANAGE_FCONTEXT_CHAR,
|
c = seobject.SEMANAGE_FCONTEXT_CHAR,
|
||||||
|
@ -112,7 +113,7 @@ seobject.file_types.update(dict(
|
||||||
l = seobject.SEMANAGE_FCONTEXT_LINK,
|
l = seobject.SEMANAGE_FCONTEXT_LINK,
|
||||||
p = seobject.SEMANAGE_FCONTEXT_PIPE,
|
p = seobject.SEMANAGE_FCONTEXT_PIPE,
|
||||||
s = seobject.SEMANAGE_FCONTEXT_SOCK,
|
s = seobject.SEMANAGE_FCONTEXT_SOCK,
|
||||||
))
|
))
|
||||||
|
|
||||||
### Make backward compatible
|
### Make backward compatible
|
||||||
option_to_file_type_str = dict(
|
option_to_file_type_str = dict(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue