summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Bojer <ivanbojer@users.noreply.github.com>2017-01-12 19:26:19 -0800
committerPeter Sprygada <privateip@users.noreply.github.com>2017-01-12 22:26:19 -0500
commit8b674cd9031881c586fc7e3f8aaa1dcb6d504326 (patch)
tree22e436f1166bf560b9dbf264a9fbd89046d7fa93
parent05adfd6d8cadccffabf7069f6eb96bed94a8d9a2 (diff)
downloadansible-8b674cd9031881c586fc7e3f8aaa1dcb6d504326.tar.gz
Panos check module to test FW readiness to accept new configuration(s) (#19882)
* new module to check FW readines * added missing parameter * changes based on the review comments; remove unecessary if statements; change returned value docstring
-rwxr-xr-xlib/ansible/modules/network/panos/panos_check.py152
1 files changed, 152 insertions, 0 deletions
diff --git a/lib/ansible/modules/network/panos/panos_check.py b/lib/ansible/modules/network/panos/panos_check.py
new file mode 100755
index 0000000000..01ee114246
--- /dev/null
+++ b/lib/ansible/modules/network/panos/panos_check.py
@@ -0,0 +1,152 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Ansible module to manage PaloAltoNetworks Firewall
+# (c) 2016, techbizdev <techbizdev@paloaltonetworks.com>
+#
+# This file is part of Ansible
+#
+# Ansible is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Ansible is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
+
+DOCUMENTATION = '''
+---
+module: panos_check
+short_description: check if PAN-OS device is ready for configuration
+description:
+ - Check if PAN-OS device is ready for being configured (no pending jobs).
+ - The check could be done once or multiple times until the device is ready.
+author: "Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)"
+version_added: "2.3"
+requirements:
+ - pan-python
+options:
+ ip_address:
+ description:
+ - IP address (or hostname) of PAN-OS device
+ required: true
+ password:
+ description:
+ - password for authentication
+ required: true
+ username:
+ description:
+ - username for authentication
+ required: false
+ default: "admin"
+ timeout:
+ description:
+ - timeout of API calls
+ required: false
+ default: "0"
+ interval:
+ description:
+ - time waited between checks
+ required: false
+ default: "0"
+'''
+
+EXAMPLES = '''
+# single check on 192.168.1.1 with credentials admin/admin
+- name: check if ready
+ panos_check:
+ ip_address: "192.168.1.1"
+ password: "admin"
+
+# check for 10 times, every 30 seconds, if device 192.168.1.1
+# is ready, using credentials admin/admin
+- name: wait for reboot
+ panos_check:
+ ip_address: "192.168.1.1"
+ password: "admin"
+ register: result
+ until: not result|failed
+ retries: 10
+ delay: 30
+'''
+
+RETURN='''
+# Default return values
+'''
+
+ANSIBLE_METADATA = {'status': ['preview'],
+ 'supported_by': 'community',
+ 'version': '1.0'}
+
+from ansible.module_utils.basic import AnsibleModule
+import time
+
+try:
+ import pan.xapi
+ HAS_LIB = True
+except ImportError:
+ HAS_LIB = False
+
+
+def check_jobs(jobs, module):
+ job_check = False
+ for j in jobs:
+ status = j.find('.//status')
+ if status is None:
+ return False
+ if status.text != 'FIN':
+ return False
+ job_check = True
+ return job_check
+
+
+def main():
+ argument_spec = dict(
+ ip_address=dict(required=True),
+ password=dict(required=True, no_log=True),
+ username=dict(default='admin'),
+ timeout=dict(default=0, type='int'),
+ interval=dict(default=0, type='int')
+ )
+ module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=False)
+ if not HAS_LIB:
+ module.fail_json(msg='pan-python is required for this module')
+
+ ip_address = module.params["ip_address"]
+ password = module.params["password"]
+ username = module.params['username']
+ timeout = module.params['timeout']
+ interval = module.params['interval']
+
+ xapi = pan.xapi.PanXapi(
+ hostname=ip_address,
+ api_username=username,
+ api_password=password,
+ timeout=60
+ )
+
+ checkpnt = time.time()+timeout
+ while True:
+ try:
+ xapi.op(cmd="show jobs all", cmd_xml=True)
+ except:
+ pass
+ else:
+ jobs = xapi.element_root.findall('.//job')
+ if check_jobs(jobs, module):
+ module.exit_json(changed=True, msg="okey dokey")
+
+ if time.time() > checkpnt:
+ break
+
+ time.sleep(interval)
+
+ module.fail_json(msg="Timeout")
+
+if __name__ == '__main__':
+ main()