mirror of
https://github.com/zahodi/ansible-mikrotik.git
synced 2025-06-21 09:35:43 +02:00
122 lines
2.9 KiB
Python
122 lines
2.9 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
DOCUMENTATION = '''
|
||
|
module: mt_tool
|
||
|
author:
|
||
|
- "Valentin Gurmeza"
|
||
|
version_added: "2.4"
|
||
|
short_description: Manage mikrotik tool endpoints
|
||
|
requirements:
|
||
|
- mt_api
|
||
|
description:
|
||
|
- Generic mikrotik tool module.
|
||
|
options:
|
||
|
hostname:
|
||
|
description:
|
||
|
- hotstname of mikrotik router
|
||
|
required: True
|
||
|
username:
|
||
|
description:
|
||
|
- username used to connect to mikrotik router
|
||
|
required: True
|
||
|
password:
|
||
|
description:
|
||
|
- password used for authentication to mikrotik router
|
||
|
required: True
|
||
|
parameter:
|
||
|
description:
|
||
|
- sub endpoint for mikrotik tool
|
||
|
required: True
|
||
|
options:
|
||
|
- netwatch
|
||
|
- e-mail
|
||
|
settings:
|
||
|
description:
|
||
|
- All Mikrotik compatible parameters for this particular endpoint.
|
||
|
Any yes/no values must be enclosed in double quotes
|
||
|
state:
|
||
|
description:
|
||
|
- absent or present
|
||
|
'''
|
||
|
|
||
|
EXAMPLES = '''
|
||
|
- mt_tool:
|
||
|
hostname: "{{ inventory_hostname }}"
|
||
|
username: "{{ mt_user }}"
|
||
|
password: "{{ mt_pass }}"
|
||
|
parameter: e-mail
|
||
|
settings:
|
||
|
address: 192.168.1.1
|
||
|
from: foo@bar.com
|
||
|
'''
|
||
|
|
||
|
from mt_common import clean_params, MikrotikIdempotent
|
||
|
from ansible.module_utils.basic import AnsibleModule
|
||
|
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec = dict(
|
||
|
hostname = dict(required=True),
|
||
|
username = dict(required=True),
|
||
|
password = dict(required=True),
|
||
|
settings = dict(required=False, type='dict'),
|
||
|
parameter = dict(
|
||
|
required = True,
|
||
|
choices = ['e-mail', 'netwatch'],
|
||
|
type = 'str'
|
||
|
),
|
||
|
state = dict(
|
||
|
required = False,
|
||
|
choices = ['present', 'absent'],
|
||
|
type = 'str'
|
||
|
),
|
||
|
)
|
||
|
)
|
||
|
|
||
|
idempotent_parameter = None
|
||
|
params = module.params
|
||
|
|
||
|
if params['parameter'] == 'netwatch':
|
||
|
idempotent_parameter = 'host'
|
||
|
|
||
|
# clean_params(params['settings'])
|
||
|
|
||
|
mt_obj = MikrotikIdempotent(
|
||
|
hostname = params['hostname'],
|
||
|
username = params['username'],
|
||
|
password = params['password'],
|
||
|
state = params['state'],
|
||
|
desired_params = params['settings'],
|
||
|
idempotent_param = idempotent_parameter,
|
||
|
api_path = '/tool/' + str(params['parameter']),
|
||
|
|
||
|
)
|
||
|
|
||
|
mt_obj.sync_state()
|
||
|
|
||
|
if mt_obj.failed:
|
||
|
module.fail_json(
|
||
|
msg = mt_obj.failed_msg
|
||
|
)
|
||
|
elif mt_obj.changed:
|
||
|
module.exit_json(
|
||
|
failed=False,
|
||
|
changed=True,
|
||
|
msg=mt_obj.changed_msg,
|
||
|
diff={ "prepared": {
|
||
|
"old": mt_obj.old_params,
|
||
|
"new": mt_obj.new_params,
|
||
|
}},
|
||
|
)
|
||
|
else:
|
||
|
module.exit_json(
|
||
|
failed=False,
|
||
|
changed=False,
|
||
|
#msg='',
|
||
|
msg=params['settings'],
|
||
|
)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|