openshift_cert_expiry.py 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # pylint: disable=line-too-long,invalid-name
  4. """For details on this module see DOCUMENTATION (below)"""
  5. # router/registry cert grabbing
  6. import subprocess
  7. # etcd config file
  8. import ConfigParser
  9. # Expiration parsing
  10. import datetime
  11. # File path stuff
  12. import os
  13. # Config file parsing
  14. import yaml
  15. # Certificate loading
  16. import OpenSSL.crypto
  17. DOCUMENTATION = '''
  18. ---
  19. module: openshift_cert_expiry
  20. short_description: Check OpenShift Container Platform (OCP) and Kube certificate expirations on a cluster
  21. description:
  22. - The M(openshift_cert_expiry) module has two basic functions: to flag certificates which will expire in a set window of time from now, and to notify you about certificates which have already expired.
  23. - When the module finishes, a summary of the examination is returned. Each certificate in the summary has a C(health) key with a value of one of the following:
  24. - C(ok) - not expired, and outside of the expiration C(warning_days) window.
  25. - C(warning) - not expired, but will expire between now and the C(warning_days) window.
  26. - C(expired) - an expired certificate.
  27. - Certificate flagging follow this logic:
  28. - If the expiration date is before now then the certificate is classified as C(expired).
  29. - The certificates time to live (expiration date - now) is calculated, if that time window is less than C(warning_days) the certificate is classified as C(warning).
  30. - All other conditions are classified as C(ok).
  31. - The following keys are ALSO present in the certificate summary:
  32. - C(cert_cn) - The common name of the certificate (additional CNs present in SAN extensions are omitted)
  33. - C(days_remaining) - The number of days until the certificate expires.
  34. - C(expiry) - The date the certificate expires on.
  35. - C(path) - The full path to the certificate on the examined host.
  36. version_added: "0.0"
  37. options:
  38. config_base:
  39. description:
  40. - Base path to OCP system settings.
  41. required: false
  42. default: /etc/origin
  43. warning_days:
  44. description:
  45. - Flag certificates which will expire in C(warning_days) days from now.
  46. required: false
  47. default: 30
  48. show_all:
  49. description:
  50. - Enable this option to show analysis of ALL certificates examined by this module.
  51. - By default only certificates which have expired, or will expire within the C(warning_days) window will be reported.
  52. required: false
  53. default: false
  54. author: "Tim Bielawa (@tbielawa) <tbielawa@redhat.com>"
  55. '''
  56. EXAMPLES = '''
  57. # Default invocation, only notify about expired certificates or certificates which will expire within 30 days from now
  58. - openshift_cert_expiry:
  59. # Expand the warning window to show certificates expiring within a year from now
  60. - openshift_cert_expiry: warning_days=365
  61. # Show expired, soon to expire (now + 30 days), and all other certificates examined
  62. - openshift_cert_expiry: show_all=true
  63. '''
  64. # We only need this for one thing, we don't care if it doesn't have
  65. # that many public methods
  66. #
  67. # pylint: disable=too-few-public-methods
  68. class FakeSecHead(object):
  69. """etcd does not begin their config file with an opening [section] as
  70. required by the Python ConfigParser module. We hack around it by
  71. slipping one in ourselves prior to parsing.
  72. Source: Alex Martelli - http://stackoverflow.com/a/2819788/6490583
  73. """
  74. def __init__(self, fp):
  75. self.fp = fp
  76. self.sechead = '[ETCD]\n'
  77. def readline(self):
  78. """Make this look like a file-type object"""
  79. if self.sechead:
  80. try:
  81. return self.sechead
  82. finally:
  83. self.sechead = None
  84. else:
  85. return self.fp.readline()
  86. ######################################################################
  87. def filter_paths(path_list):
  88. """`path_list` - A list of file paths to check. Only files which exist
  89. will be returned
  90. """
  91. return [p for p in path_list if os.path.exists(os.path.realpath(p))]
  92. def load_and_handle_cert(cert_string, now, base64decode=False):
  93. """Load a certificate, split off the good parts, and return some
  94. useful data
  95. Params:
  96. - `cert_string` (string) - a certificate loaded into a string object
  97. - `now` (datetime) - a datetime object of the time to calculate the certificate 'time_remaining' against
  98. - `base64decode` (bool) - run .decode('base64') on the input?
  99. Returns:
  100. A 3-tuple of the form: (certificate_common_name, certificate_expiry_date, certificate_time_remaining)
  101. """
  102. if base64decode:
  103. _cert_string = cert_string.decode('base-64')
  104. else:
  105. _cert_string = cert_string
  106. cert_loaded = OpenSSL.crypto.load_certificate(
  107. OpenSSL.crypto.FILETYPE_PEM, _cert_string)
  108. ######################################################################
  109. # Read just the first name from the cert - DISABLED while testing
  110. # out the 'get all possible names' function (below)
  111. #
  112. # Strip the subject down to just the value of the first name
  113. # cert_subject = cert_loaded.get_subject().get_components()[0][1]
  114. ######################################################################
  115. # Read all possible names from the cert
  116. cert_subjects = []
  117. for name, value in cert_loaded.get_subject().get_components():
  118. cert_subjects.append('{}:{}'.format(name, value))
  119. # To read SANs from a cert we must read the subjectAltName
  120. # extension from the X509 Object. What makes this more difficult
  121. # is that pyOpenSSL does not give extensions as a list, nor does
  122. # it provide a count of all loaded extensions.
  123. #
  124. # Rather, extensions are REQUESTED by index. We must iterate over
  125. # all extensions until we find the one called 'subjectAltName'. If
  126. # we don't find that extension we'll eventually request an
  127. # extension at an index where no extension exists (IndexError is
  128. # raised). When that happens we know that the cert has no SANs so
  129. # we break out of the loop.
  130. i = 0
  131. checked_all_extensions = False
  132. while not checked_all_extensions:
  133. try:
  134. # Read the extension at index 'i'
  135. ext = cert_loaded.get_extension(i)
  136. except IndexError:
  137. # We tried to read an extension but it isn't there, that
  138. # means we ran out of extensions to check. Abort
  139. san = None
  140. checked_all_extensions = True
  141. else:
  142. # We were able to load the extension at index 'i'
  143. if ext.get_short_name() == 'subjectAltName':
  144. san = ext
  145. checked_all_extensions = True
  146. else:
  147. # Try reading the next extension
  148. i += 1
  149. if san is not None:
  150. # The X509Extension object for subjectAltName prints as a
  151. # string with the alt names separated by a comma and a
  152. # space. Split the string by ', ' and then add our new names
  153. # to the list of existing names
  154. cert_subjects.extend(str(san).split(', '))
  155. cert_subject = ', '.join(cert_subjects)
  156. ######################################################################
  157. # Grab the expiration date
  158. cert_expiry = cert_loaded.get_notAfter()
  159. cert_expiry_date = datetime.datetime.strptime(
  160. cert_expiry,
  161. # example get_notAfter() => 20180922170439Z
  162. '%Y%m%d%H%M%SZ')
  163. time_remaining = cert_expiry_date - now
  164. return (cert_subject, cert_expiry_date, time_remaining)
  165. def classify_cert(cert_meta, now, time_remaining, expire_window, cert_list):
  166. """Given metadata about a certificate under examination, classify it
  167. into one of three categories, 'ok', 'warning', and 'expired'.
  168. Params:
  169. - `cert_meta` dict - A dict with certificate metadata. Required fields
  170. include: 'cert_cn', 'path', 'expiry', 'days_remaining', 'health'.
  171. - `now` (datetime) - a datetime object of the time to calculate the certificate 'time_remaining' against
  172. - `time_remaining` (datetime.timedelta) - a timedelta for how long until the cert expires
  173. - `expire_window` (datetime.timedelta) - a timedelta for how long the warning window is
  174. - `cert_list` list - A list to shove the classified cert into
  175. Return:
  176. - `cert_list` - The updated list of classified certificates
  177. """
  178. expiry_str = str(cert_meta['expiry'])
  179. # Categorization
  180. if cert_meta['expiry'] < now:
  181. # This already expired, must NOTIFY
  182. cert_meta['health'] = 'expired'
  183. elif time_remaining < expire_window:
  184. # WARN about this upcoming expirations
  185. cert_meta['health'] = 'warning'
  186. else:
  187. # Not expired or about to expire
  188. cert_meta['health'] = 'ok'
  189. cert_meta['expiry'] = expiry_str
  190. cert_list.append(cert_meta)
  191. return cert_list
  192. def tabulate_summary(certificates, kubeconfigs, etcd_certs, router_certs, registry_certs):
  193. """Calculate the summary text for when the module finishes
  194. running. This includes counds of each classification and what have
  195. you.
  196. Params:
  197. - `certificates` (list of dicts) - Processed `expire_check_result`
  198. dicts with filled in `health` keys for system certificates.
  199. - `kubeconfigs` - as above for kubeconfigs
  200. - `etcd_certs` - as above for etcd certs
  201. Return:
  202. - `summary_results` (dict) - Counts of each cert type classification
  203. and total items examined.
  204. """
  205. items = certificates + kubeconfigs + etcd_certs + router_certs + registry_certs
  206. summary_results = {
  207. 'system_certificates': len(certificates),
  208. 'kubeconfig_certificates': len(kubeconfigs),
  209. 'etcd_certificates': len(etcd_certs),
  210. 'router_certs': len(router_certs),
  211. 'registry_certs': len(registry_certs),
  212. 'total': len(items),
  213. 'ok': 0,
  214. 'warning': 0,
  215. 'expired': 0
  216. }
  217. summary_results['expired'] = len([c for c in items if c['health'] == 'expired'])
  218. summary_results['warning'] = len([c for c in items if c['health'] == 'warning'])
  219. summary_results['ok'] = len([c for c in items if c['health'] == 'ok'])
  220. return summary_results
  221. ######################################################################
  222. # This is our module MAIN function after all, so there's bound to be a
  223. # lot of code bundled up into one block
  224. #
  225. # pylint: disable=too-many-locals,too-many-locals,too-many-statements,too-many-branches
  226. def main():
  227. """This module examines certificates (in various forms) which compose
  228. an OpenShift Container Platform cluster
  229. """
  230. module = AnsibleModule(
  231. argument_spec=dict(
  232. config_base=dict(
  233. required=False,
  234. default="/etc/origin",
  235. type='str'),
  236. warning_days=dict(
  237. required=False,
  238. default=30,
  239. type='int'),
  240. show_all=dict(
  241. required=False,
  242. default=False,
  243. type='bool')
  244. ),
  245. supports_check_mode=True,
  246. )
  247. # Basic scaffolding for OpenShift spcific certs
  248. openshift_base_config_path = module.params['config_base']
  249. openshift_master_config_path = os.path.normpath(
  250. os.path.join(openshift_base_config_path, "master/master-config.yaml")
  251. )
  252. openshift_node_config_path = os.path.normpath(
  253. os.path.join(openshift_base_config_path, "node/node-config.yaml")
  254. )
  255. openshift_cert_check_paths = [
  256. openshift_master_config_path,
  257. openshift_node_config_path,
  258. ]
  259. # Paths for Kubeconfigs. Additional kubeconfigs are conditionally
  260. # checked later in the code
  261. master_kube_configs = ['admin', 'openshift-master',
  262. 'openshift-node', 'openshift-router',
  263. 'openshift-registry']
  264. kubeconfig_paths = []
  265. for m_kube_config in master_kube_configs:
  266. kubeconfig_paths.append(
  267. os.path.normpath(
  268. os.path.join(openshift_base_config_path, "master/%s.kubeconfig" % m_kube_config)
  269. )
  270. )
  271. # etcd, where do you hide your certs? Used when parsing etcd.conf
  272. etcd_cert_params = [
  273. "ETCD_CA_FILE",
  274. "ETCD_CERT_FILE",
  275. "ETCD_PEER_CA_FILE",
  276. "ETCD_PEER_CERT_FILE",
  277. ]
  278. # Expiry checking stuff
  279. now = datetime.datetime.now()
  280. # todo, catch exception for invalid input and return a fail_json
  281. warning_days = int(module.params['warning_days'])
  282. expire_window = datetime.timedelta(days=warning_days)
  283. # Module stuff
  284. #
  285. # The results of our cert checking to return from the task call
  286. check_results = {}
  287. check_results['meta'] = {}
  288. check_results['meta']['warning_days'] = warning_days
  289. check_results['meta']['checked_at_time'] = str(now)
  290. check_results['meta']['warn_before_date'] = str(now + expire_window)
  291. check_results['meta']['show_all'] = str(module.params['show_all'])
  292. # All the analyzed certs accumulate here
  293. ocp_certs = []
  294. ######################################################################
  295. # Sure, why not? Let's enable check mode.
  296. if module.check_mode:
  297. check_results['ocp_certs'] = []
  298. module.exit_json(
  299. check_results=check_results,
  300. msg="Checked 0 total certificates. Expired/Warning/OK: 0/0/0. Warning window: %s days" % module.params['warning_days'],
  301. rc=0,
  302. changed=False
  303. )
  304. ######################################################################
  305. # Check for OpenShift Container Platform specific certs
  306. ######################################################################
  307. for os_cert in filter_paths(openshift_cert_check_paths):
  308. # Open up that config file and locate the cert and CA
  309. with open(os_cert, 'r') as fp:
  310. cert_meta = {}
  311. cfg = yaml.load(fp)
  312. # cert files are specified in parsed `fp` as relative to the path
  313. # of the original config file. 'master-config.yaml' with certFile
  314. # = 'foo.crt' implies that 'foo.crt' is in the same
  315. # directory. certFile = '../foo.crt' is in the parent directory.
  316. cfg_path = os.path.dirname(fp.name)
  317. cert_meta['certFile'] = os.path.join(cfg_path, cfg['servingInfo']['certFile'])
  318. cert_meta['clientCA'] = os.path.join(cfg_path, cfg['servingInfo']['clientCA'])
  319. ######################################################################
  320. # Load the certificate and the CA, parse their expiration dates into
  321. # datetime objects so we can manipulate them later
  322. for _, v in cert_meta.iteritems():
  323. with open(v, 'r') as fp:
  324. cert = fp.read()
  325. cert_subject, cert_expiry_date, time_remaining = load_and_handle_cert(cert, now)
  326. expire_check_result = {
  327. 'cert_cn': cert_subject,
  328. 'path': fp.name,
  329. 'expiry': cert_expiry_date,
  330. 'days_remaining': time_remaining.days,
  331. 'health': None,
  332. }
  333. classify_cert(expire_check_result, now, time_remaining, expire_window, ocp_certs)
  334. ######################################################################
  335. # /Check for OpenShift Container Platform specific certs
  336. ######################################################################
  337. ######################################################################
  338. # Check service Kubeconfigs
  339. ######################################################################
  340. kubeconfigs = []
  341. # There may be additional kubeconfigs to check, but their naming
  342. # is less predictable than the ones we've already assembled.
  343. try:
  344. # Try to read the standard 'node-config.yaml' file to check if
  345. # this host is a node.
  346. with open(openshift_node_config_path, 'r') as fp:
  347. cfg = yaml.load(fp)
  348. # OK, the config file exists, therefore this is a
  349. # node. Nodes have their own kubeconfig files to
  350. # communicate with the master API. Let's read the relative
  351. # path to that file from the node config.
  352. node_masterKubeConfig = cfg['masterKubeConfig']
  353. # As before, the path to the 'masterKubeConfig' file is
  354. # relative to `fp`
  355. cfg_path = os.path.dirname(fp.name)
  356. node_kubeconfig = os.path.join(cfg_path, node_masterKubeConfig)
  357. with open(node_kubeconfig, 'r') as fp:
  358. # Read in the nodes kubeconfig file and grab the good stuff
  359. cfg = yaml.load(fp)
  360. c = cfg['users'][0]['user']['client-certificate-data']
  361. (cert_subject,
  362. cert_expiry_date,
  363. time_remaining) = load_and_handle_cert(c, now, base64decode=True)
  364. expire_check_result = {
  365. 'cert_cn': cert_subject,
  366. 'path': fp.name,
  367. 'expiry': cert_expiry_date,
  368. 'days_remaining': time_remaining.days,
  369. 'health': None,
  370. }
  371. classify_cert(expire_check_result, now, time_remaining, expire_window, kubeconfigs)
  372. except IOError:
  373. # This is not a node
  374. pass
  375. for kube in filter_paths(kubeconfig_paths):
  376. with open(kube, 'r') as fp:
  377. # TODO: Maybe consider catching exceptions here?
  378. cfg = yaml.load(fp)
  379. # Per conversation, "the kubeconfigs you care about:
  380. # admin, router, registry should all be single
  381. # value". Following that advice we only grab the data for
  382. # the user at index 0 in the 'users' list. There should
  383. # not be more than one user.
  384. c = cfg['users'][0]['user']['client-certificate-data']
  385. (cert_subject,
  386. cert_expiry_date,
  387. time_remaining) = load_and_handle_cert(c, now, base64decode=True)
  388. expire_check_result = {
  389. 'cert_cn': cert_subject,
  390. 'path': fp.name,
  391. 'expiry': cert_expiry_date,
  392. 'days_remaining': time_remaining.days,
  393. 'health': None,
  394. }
  395. classify_cert(expire_check_result, now, time_remaining, expire_window, kubeconfigs)
  396. ######################################################################
  397. # /Check service Kubeconfigs
  398. ######################################################################
  399. ######################################################################
  400. # Check etcd certs
  401. ######################################################################
  402. # Some values may be duplicated, make this a set for now so we
  403. # unique them all
  404. etcd_certs_to_check = set([])
  405. etcd_certs = []
  406. etcd_cert_params.append('dne')
  407. try:
  408. with open('/etc/etcd/etcd.conf', 'r') as fp:
  409. etcd_config = ConfigParser.ConfigParser()
  410. etcd_config.readfp(FakeSecHead(fp))
  411. for param in etcd_cert_params:
  412. try:
  413. etcd_certs_to_check.add(etcd_config.get('ETCD', param))
  414. except ConfigParser.NoOptionError:
  415. # That parameter does not exist, oh well...
  416. pass
  417. except IOError:
  418. # No etcd to see here, move along
  419. pass
  420. for etcd_cert in filter_paths(etcd_certs_to_check):
  421. with open(etcd_cert, 'r') as fp:
  422. c = fp.read()
  423. (cert_subject,
  424. cert_expiry_date,
  425. time_remaining) = load_and_handle_cert(c, now)
  426. expire_check_result = {
  427. 'cert_cn': cert_subject,
  428. 'path': fp.name,
  429. 'expiry': cert_expiry_date,
  430. 'days_remaining': time_remaining.days,
  431. 'health': None,
  432. }
  433. classify_cert(expire_check_result, now, time_remaining, expire_window, etcd_certs)
  434. ######################################################################
  435. # /Check etcd certs
  436. ######################################################################
  437. ######################################################################
  438. # Check router/registry certs
  439. #
  440. # These are saved as secrets in etcd. That means that we can not
  441. # simply read a file to grab the data. Instead we're going to
  442. # subprocess out to the 'oc get' command. On non-masters this
  443. # command will fail, that is expected so we catch that exception.
  444. ######################################################################
  445. router_certs = []
  446. registry_certs = []
  447. ######################################################################
  448. # First the router certs
  449. try:
  450. router_secrets_raw = subprocess.Popen('oc get secret router-certs -o yaml'.split(),
  451. stdout=subprocess.PIPE)
  452. router_ds = yaml.load(router_secrets_raw.communicate()[0])
  453. router_c = router_ds['data']['tls.crt']
  454. router_path = router_ds['metadata']['selfLink']
  455. except TypeError:
  456. # YAML couldn't load the result, this is not a master
  457. pass
  458. else:
  459. (cert_subject,
  460. cert_expiry_date,
  461. time_remaining) = load_and_handle_cert(router_c, now, base64decode=True)
  462. expire_check_result = {
  463. 'cert_cn': cert_subject,
  464. 'path': router_path,
  465. 'expiry': cert_expiry_date,
  466. 'days_remaining': time_remaining.days,
  467. 'health': None,
  468. }
  469. classify_cert(expire_check_result, now, time_remaining, expire_window, router_certs)
  470. ######################################################################
  471. # Now for registry
  472. try:
  473. registry_secrets_raw = subprocess.Popen('oc get secret registry-certificates -o yaml'.split(),
  474. stdout=subprocess.PIPE)
  475. registry_ds = yaml.load(registry_secrets_raw.communicate()[0])
  476. registry_c = registry_ds['data']['registry.crt']
  477. registry_path = registry_ds['metadata']['selfLink']
  478. except TypeError:
  479. # YAML couldn't load the result, this is not a master
  480. pass
  481. else:
  482. (cert_subject,
  483. cert_expiry_date,
  484. time_remaining) = load_and_handle_cert(registry_c, now, base64decode=True)
  485. expire_check_result = {
  486. 'cert_cn': cert_subject,
  487. 'path': registry_path,
  488. 'expiry': cert_expiry_date,
  489. 'days_remaining': time_remaining.days,
  490. 'health': None,
  491. }
  492. classify_cert(expire_check_result, now, time_remaining, expire_window, registry_certs)
  493. ######################################################################
  494. # /Check router/registry certs
  495. ######################################################################
  496. res = tabulate_summary(ocp_certs, kubeconfigs, etcd_certs, router_certs, registry_certs)
  497. msg = "Checked {count} total certificates. Expired/Warning/OK: {exp}/{warn}/{ok}. Warning window: {window} days".format(
  498. count=res['total'],
  499. exp=res['expired'],
  500. warn=res['warning'],
  501. ok=res['ok'],
  502. window=int(module.params['warning_days']),
  503. )
  504. # By default we only return detailed information about expired or
  505. # warning certificates. If show_all is true then we will print all
  506. # the certificates examined.
  507. if not module.params['show_all']:
  508. check_results['ocp_certs'] = [crt for crt in ocp_certs if crt['health'] in ['expired', 'warning']]
  509. check_results['kubeconfigs'] = [crt for crt in kubeconfigs if crt['health'] in ['expired', 'warning']]
  510. check_results['etcd'] = [crt for crt in etcd_certs if crt['health'] in ['expired', 'warning']]
  511. check_results['registry'] = [crt for crt in registry_certs if crt['health'] in ['expired', 'warning']]
  512. check_results['router'] = [crt for crt in router_certs if crt['health'] in ['expired', 'warning']]
  513. else:
  514. check_results['ocp_certs'] = ocp_certs
  515. check_results['kubeconfigs'] = kubeconfigs
  516. check_results['etcd'] = etcd_certs
  517. check_results['registry'] = registry_certs
  518. check_results['router'] = router_certs
  519. # Sort the final results to report in order of ascending safety
  520. # time. That is to say, the certificates which will expire sooner
  521. # will be at the front of the list and certificates which will
  522. # expire later are at the end. Router and registry certs should be
  523. # limited to just 1 result, so don't bother sorting those.
  524. check_results['ocp_certs'] = sorted(check_results['ocp_certs'], cmp=lambda x, y: cmp(x['days_remaining'], y['days_remaining']))
  525. check_results['kubeconfigs'] = sorted(check_results['kubeconfigs'], cmp=lambda x, y: cmp(x['days_remaining'], y['days_remaining']))
  526. check_results['etcd'] = sorted(check_results['etcd'], cmp=lambda x, y: cmp(x['days_remaining'], y['days_remaining']))
  527. # This module will never change anything, but we might want to
  528. # change the return code parameter if there is some catastrophic
  529. # error we noticed earlier
  530. module.exit_json(
  531. check_results=check_results,
  532. summary=res,
  533. msg=msg,
  534. rc=0,
  535. changed=False
  536. )
  537. ######################################################################
  538. # It's just the way we do things in Ansible. So disable this warning
  539. #
  540. # pylint: disable=wrong-import-position,import-error
  541. from ansible.module_utils.basic import AnsibleModule
  542. if __name__ == '__main__':
  543. main()