mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
4.6 KiB
Python
140 lines
4.6 KiB
Python
9 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# (c) 2016, Cumulus Networks <ce-ceng@cumulusnetworks.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: cl_license
|
||
|
version_added: "2.1"
|
||
|
author: "Cumulus Networks (@CumulusNetworks)"
|
||
|
short_description: Install Cumulus Linux license
|
||
|
description:
|
||
|
- Installs a Cumulus Linux license. The module reports no change of status
|
||
|
when a license is installed.
|
||
|
For more details go the Cumulus Linux License Documentation @
|
||
|
http://docs.cumulusnetwork.com and the Licensing KB Site @
|
||
|
https://support.cumulusnetworks.com/hc/en-us/sections/200507688
|
||
|
notes:
|
||
|
- to activate a license for the FIRST time, the switchd service must be
|
||
|
restarted. This action is disruptive. The license renewal process occurs
|
||
|
via the Cumulus Networks Customer Portal -
|
||
|
http://customers.cumulusnetworks.com.
|
||
|
- A non-EULA license is REQUIRED for automation. Manually install the
|
||
|
license on a test switch, using the command "cl-license -i <license_file>"
|
||
|
to confirm the license is a Non-EULA license.
|
||
|
See EXAMPLES, for the proper way to issue this notify action.
|
||
|
options:
|
||
|
src:
|
||
|
description:
|
||
|
- full path to the license. Can be local path or http url
|
||
|
force:
|
||
|
description:
|
||
|
- force installation of a license. Typically not needed.
|
||
|
It is recommended to manually run this command via the ansible
|
||
|
command. A reload of switchd is not required. Running the force
|
||
|
option in a playbook will break the idempotent state machine of
|
||
|
the module and cause the switchd notification to kick in all the
|
||
|
time, causing a disruption.
|
||
|
|
||
|
'''
|
||
|
EXAMPLES = '''
|
||
|
Example playbook using the cl_license module to manage licenses on Cumulus Linux
|
||
|
|
||
|
---
|
||
|
- hosts: all
|
||
|
tasks:
|
||
|
- name: install license using http url
|
||
|
cl_license: src='http://10.1.1.1/license.txt'
|
||
|
notify: restart switchd
|
||
|
|
||
|
- name: Triggers switchd to be restarted right away, before play, or role
|
||
|
is over. This is desired behaviour
|
||
|
meta: flush_handlers
|
||
|
|
||
|
- name: configure interfaces
|
||
|
template: src=interfaces.j2 dest=/etc/network/interfaces
|
||
|
notify: restart networking
|
||
|
|
||
|
handlers:
|
||
|
- name: restart switchd
|
||
|
service: name=switchd state=restarted
|
||
|
- name: restart networking
|
||
|
service: name=networking state=reloaded
|
||
|
|
||
|
----
|
||
|
|
||
|
# Force all switches to accept a new license. Typically not needed
|
||
|
ansible -m cl_license -a "src='http://10.1.1.1/new_lic' force=yes" -u root all
|
||
|
|
||
|
----
|
||
|
|
||
|
'''
|
||
|
|
||
|
RETURN = '''
|
||
|
changed:
|
||
|
description: whether the interface was changed
|
||
|
returned: changed
|
||
|
type: bool
|
||
|
sample: True
|
||
|
msg:
|
||
|
description: human-readable report of success or failure
|
||
|
returned: always
|
||
|
type: string
|
||
|
sample: "interface bond0 config updated"
|
||
|
'''
|
||
|
|
||
|
CL_LICENSE_PATH='/usr/cumulus/bin/cl-license'
|
||
|
|
||
|
def install_license(module):
|
||
|
# license is not installed, install it
|
||
|
_url = module.params.get('src')
|
||
|
(_rc, out, _err) = module.run_command("%s -i %s" % (CL_LICENSE_PATH, _url))
|
||
|
if _rc > 0:
|
||
|
module.fail_json(msg=_err)
|
||
|
|
||
|
|
||
|
def main():
|
||
|
module = AnsibleModule(
|
||
|
argument_spec=dict(
|
||
|
src=dict(required=True, type='str'),
|
||
|
force=dict(type='bool', choices=BOOLEANS,
|
||
|
default=False)
|
||
|
),
|
||
|
)
|
||
|
|
||
|
# check if license is installed
|
||
|
# if force is enabled then set return code to nonzero
|
||
|
if module.params.get('force') is True:
|
||
|
_rc = 10
|
||
|
else:
|
||
|
(_rc, out, _err) = module.run_command(CL_LICENSE_PATH)
|
||
|
if _rc == 0:
|
||
|
module.msg = "No change. License already installed"
|
||
|
module.changed = False
|
||
|
else:
|
||
|
install_license(module)
|
||
|
module.msg = "License installation completed"
|
||
|
module.changed = True
|
||
|
module.exit_json(changed=module.changed, msg=module.msg)
|
||
|
|
||
|
|
||
|
# import module snippets
|
||
|
from ansible.module_utils.basic import *
|
||
|
# from ansible.module_utils.urls import *
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|