mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Resolve traceback when python-selinux is not installed
This commit is contained in:
parent
f1f44843c3
commit
f4c4537327
1 changed files with 2 additions and 4 deletions
|
@ -57,9 +57,9 @@ import re
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import selinux
|
import selinux
|
||||||
HAVE_SELINUX=True
|
|
||||||
except ImportError:
|
except ImportError:
|
||||||
HAVE_SELINUX=False
|
print "failed=True msg='python-selinux required for this module'"
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
# getter subroutines
|
# getter subroutines
|
||||||
def get_config_state(configfile):
|
def get_config_state(configfile):
|
||||||
|
@ -117,8 +117,6 @@ def set_config_policy(policy, configfile):
|
||||||
myfile.close()
|
myfile.close()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
if (not HAVE_SELINUX):
|
|
||||||
module.fail_json(msg='python-selinux required for this module')
|
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
|
|
Loading…
Reference in a new issue