Resolve traceback when python-selinux is not installed

pull/1648/head
Dag Wieers 12 years ago
parent f1f44843c3
commit f4c4537327

@ -57,9 +57,9 @@ import re
try:
import selinux
HAVE_SELINUX=True
except ImportError:
HAVE_SELINUX=False
print "failed=True msg='python-selinux required for this module'"
sys.exit(1)
# getter subroutines
def get_config_state(configfile):
@ -117,8 +117,6 @@ def set_config_policy(policy, configfile):
myfile.close()
def main():
if (not HAVE_SELINUX):
module.fail_json(msg='python-selinux required for this module')
module = AnsibleModule(
argument_spec = dict(

Loading…
Cancel
Save