2020-03-09 10:11:07 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2018, Bruce Smith <Bruce.Smith.IT@gmail.com>
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
---
|
|
|
|
module: nictagadm
|
|
|
|
short_description: Manage nic tags on SmartOS systems
|
|
|
|
description:
|
|
|
|
- Create or delete nic tags on SmartOS systems.
|
|
|
|
author:
|
2023-02-20 17:30:26 +01:00
|
|
|
- Bruce Smith (@SmithX10)
|
|
|
|
extends_documentation_fragment:
|
|
|
|
- community.general.attributes
|
|
|
|
attributes:
|
|
|
|
check_mode:
|
|
|
|
support: full
|
|
|
|
diff_mode:
|
|
|
|
support: none
|
2020-03-09 10:11:07 +01:00
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- Name of the nic tag.
|
|
|
|
required: true
|
|
|
|
type: str
|
|
|
|
mac:
|
|
|
|
description:
|
2023-06-15 15:47:40 +02:00
|
|
|
- Specifies the O(mac) address to attach the nic tag to when not creating an O(etherstub).
|
|
|
|
- Parameters O(mac) and O(etherstub) are mutually exclusive.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: str
|
|
|
|
etherstub:
|
|
|
|
description:
|
2023-06-15 15:47:40 +02:00
|
|
|
- Specifies that the nic tag will be attached to a created O(etherstub).
|
|
|
|
- Parameter O(etherstub) is mutually exclusive with both O(mtu), and O(mac).
|
2020-03-09 10:11:07 +01:00
|
|
|
type: bool
|
2022-08-24 20:16:25 +02:00
|
|
|
default: false
|
2020-03-09 10:11:07 +01:00
|
|
|
mtu:
|
|
|
|
description:
|
2023-06-15 15:47:40 +02:00
|
|
|
- Specifies the size of the O(mtu) of the desired nic tag.
|
|
|
|
- Parameters O(mtu) and O(etherstub) are mutually exclusive.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: int
|
|
|
|
force:
|
|
|
|
description:
|
2023-06-15 15:47:40 +02:00
|
|
|
- When O(state=absent) this switch will use the C(-f) parameter and delete the nic tag regardless of existing VMs.
|
2020-03-09 10:11:07 +01:00
|
|
|
type: bool
|
2022-08-24 20:16:25 +02:00
|
|
|
default: false
|
2020-03-09 10:11:07 +01:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Create or delete a SmartOS nic tag.
|
|
|
|
type: str
|
|
|
|
choices: [ absent, present ]
|
|
|
|
default: present
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = r'''
|
|
|
|
- name: Create 'storage0' on '00:1b:21:a3:f5:4d'
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.nictagadm:
|
2020-03-09 10:11:07 +01:00
|
|
|
name: storage0
|
|
|
|
mac: 00:1b:21:a3:f5:4d
|
|
|
|
mtu: 9000
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Remove 'storage0' nic tag
|
2020-07-13 21:50:31 +02:00
|
|
|
community.general.nictagadm:
|
2020-03-09 10:11:07 +01:00
|
|
|
name: storage0
|
|
|
|
state: absent
|
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''
|
|
|
|
name:
|
|
|
|
description: nic tag name
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: storage0
|
|
|
|
mac:
|
|
|
|
description: MAC Address that the nic tag was attached to.
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: 00:1b:21:a3:f5:4d
|
|
|
|
etherstub:
|
|
|
|
description: specifies if the nic tag will create and attach to an etherstub.
|
|
|
|
returned: always
|
|
|
|
type: bool
|
2022-09-06 20:42:17 +02:00
|
|
|
sample: false
|
2020-03-09 10:11:07 +01:00
|
|
|
mtu:
|
|
|
|
description: specifies which MTU size was passed during the nictagadm add command. mtu and etherstub are mutually exclusive.
|
|
|
|
returned: always
|
|
|
|
type: int
|
|
|
|
sample: 1500
|
|
|
|
force:
|
|
|
|
description: Shows if -f was used during the deletion of a nic tag
|
|
|
|
returned: always
|
|
|
|
type: bool
|
2022-09-06 20:42:17 +02:00
|
|
|
sample: false
|
2020-03-09 10:11:07 +01:00
|
|
|
state:
|
|
|
|
description: state of the target
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: present
|
|
|
|
'''
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.common.network import is_mac
|
|
|
|
|
|
|
|
|
|
|
|
class NicTag(object):
|
|
|
|
|
|
|
|
def __init__(self, module):
|
|
|
|
self.module = module
|
|
|
|
|
|
|
|
self.name = module.params['name']
|
|
|
|
self.mac = module.params['mac']
|
|
|
|
self.etherstub = module.params['etherstub']
|
|
|
|
self.mtu = module.params['mtu']
|
|
|
|
self.force = module.params['force']
|
|
|
|
self.state = module.params['state']
|
|
|
|
|
|
|
|
self.nictagadm_bin = self.module.get_bin_path('nictagadm', True)
|
|
|
|
|
|
|
|
def is_valid_mac(self):
|
|
|
|
return is_mac(self.mac.lower())
|
|
|
|
|
|
|
|
def nictag_exists(self):
|
2021-04-05 09:22:06 +02:00
|
|
|
cmd = [self.nictagadm_bin, 'exists', self.name]
|
2020-03-09 10:11:07 +01:00
|
|
|
(rc, dummy, dummy) = self.module.run_command(cmd)
|
|
|
|
|
|
|
|
return rc == 0
|
|
|
|
|
|
|
|
def add_nictag(self):
|
2021-04-05 09:22:06 +02:00
|
|
|
cmd = [self.nictagadm_bin, '-v', 'add']
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
if self.etherstub:
|
|
|
|
cmd.append('-l')
|
|
|
|
|
|
|
|
if self.mtu:
|
|
|
|
cmd.append('-p')
|
|
|
|
cmd.append('mtu=' + str(self.mtu))
|
|
|
|
|
|
|
|
if self.mac:
|
|
|
|
cmd.append('-p')
|
|
|
|
cmd.append('mac=' + str(self.mac))
|
|
|
|
|
|
|
|
cmd.append(self.name)
|
|
|
|
|
|
|
|
return self.module.run_command(cmd)
|
|
|
|
|
|
|
|
def delete_nictag(self):
|
2021-04-05 09:22:06 +02:00
|
|
|
cmd = [self.nictagadm_bin, '-v', 'delete']
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
if self.force:
|
|
|
|
cmd.append('-f')
|
|
|
|
|
|
|
|
cmd.append(self.name)
|
|
|
|
|
|
|
|
return self.module.run_command(cmd)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
name=dict(type='str', required=True),
|
|
|
|
mac=dict(type='str'),
|
|
|
|
etherstub=dict(type='bool', default=False),
|
|
|
|
mtu=dict(type='int'),
|
|
|
|
force=dict(type='bool', default=False),
|
|
|
|
state=dict(type='str', default='present', choices=['absent', 'present']),
|
|
|
|
),
|
|
|
|
mutually_exclusive=[
|
|
|
|
['etherstub', 'mac'],
|
|
|
|
['etherstub', 'mtu'],
|
|
|
|
],
|
|
|
|
required_if=[
|
|
|
|
['etherstub', False, ['name', 'mac']],
|
|
|
|
['state', 'absent', ['name', 'force']],
|
|
|
|
],
|
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
|
|
|
nictag = NicTag(module)
|
|
|
|
|
|
|
|
rc = None
|
|
|
|
out = ''
|
|
|
|
err = ''
|
|
|
|
result = dict(
|
|
|
|
changed=False,
|
|
|
|
etherstub=nictag.etherstub,
|
|
|
|
force=nictag.force,
|
|
|
|
name=nictag.name,
|
|
|
|
mac=nictag.mac,
|
|
|
|
mtu=nictag.mtu,
|
|
|
|
state=nictag.state,
|
|
|
|
)
|
|
|
|
|
|
|
|
if not nictag.is_valid_mac():
|
|
|
|
module.fail_json(msg='Invalid MAC Address Value',
|
|
|
|
name=nictag.name,
|
|
|
|
mac=nictag.mac,
|
|
|
|
etherstub=nictag.etherstub)
|
|
|
|
|
|
|
|
if nictag.state == 'absent':
|
|
|
|
if nictag.nictag_exists():
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
(rc, out, err) = nictag.delete_nictag()
|
|
|
|
if rc != 0:
|
|
|
|
module.fail_json(name=nictag.name, msg=err, rc=rc)
|
|
|
|
elif nictag.state == 'present':
|
|
|
|
if not nictag.nictag_exists():
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
(rc, out, err) = nictag.add_nictag()
|
|
|
|
if rc is not None and rc != 0:
|
|
|
|
module.fail_json(name=nictag.name, msg=err, rc=rc)
|
|
|
|
|
|
|
|
if rc is not None:
|
|
|
|
result['changed'] = True
|
|
|
|
if out:
|
|
|
|
result['stdout'] = out
|
|
|
|
if err:
|
|
|
|
result['stderr'] = err
|
|
|
|
|
|
|
|
module.exit_json(**result)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|