mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2578 from arrfab/selinux-fix-2
Added an extra check for target nodes with selinux but without libselinux-python package installed
This commit is contained in:
commit
2c881e2b3d
1 changed files with 3 additions and 0 deletions
|
@ -84,6 +84,9 @@ try:
|
||||||
import selinux
|
import selinux
|
||||||
HAVE_SELINUX=True
|
HAVE_SELINUX=True
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
if os.path.exists("/selinux/enforce"):
|
||||||
|
sys.stderr.write('Error: ansible requires the package libselinux-python on nodes with selinux, none found!')
|
||||||
|
sys.exit(1)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue