CheckPointSW / CheckPointAnsibleMgmtCollection

This Ansible collection provides control over a Check Point Management server using Check Point's web-services APIs.
https://galaxy.ansible.com/check_point/mgmt
Apache License 2.0
40 stars 30 forks source link

Add-package-Repository fails when trying to upload JHF from local #97

Closed sasikdar closed 1 year ago

sasikdar commented 1 year ago

Hello,

The api endpoint says the path does not exists when I try to upload a software package from local.

This is the task:

---
- name: Add software package to management repository
  custom_add_repository_package:
    name: "{{common_inventory.jumbo_hot_fix}}"
    source : local
    path: "/home/sayan/NSD/JHF/"

Custom_add_repository_package:


# -*- coding: utf-8 -*-
#
# Ansible module to manage CheckPoint Firewall (c) 2019
#
# 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/>.
#

from __future__ import (absolute_import, division, print_function)

__metaclass__ = type

ANSIBLE_METADATA = {'metadata_version': '1.1',
                    'status': ['preview'],
                    'supported_by': 'community'}

DOCUMENTATION = """
---
module: custom_add_repository_package
short_description: Adds the software package to management server.
description:
  - Adds the software package to management server.
author: "Jim Oqvist (@chkp-jimo)"
extends_documentation_fragment: check_point.mgmt.checkpoint_commands
"""

EXAMPLES = """
- name: add-repository-package
  custom_add_repository_package:
    name: Check_Point_R81_10_JUMBO_HF_MAIN_Bundle_T30_FULL.tgz
    source : cloud
"""

RETURN = """
custom_add_repository_package:
  description: The checkpoint add-repository-package output.
  returned: always.
  type: dict
"""

from ansible.module_utils.basic import AnsibleModule
from ansible_collections.check_point.mgmt.plugins.module_utils.checkpoint import checkpoint_argument_spec_for_commands, api_command

def main():
    argument_spec = dict(
        name=dict(type='str'),
        path=dict(type='str'),
        source=dict(type='str', choices=['cloud', 'local'])
    )
    argument_spec.update(checkpoint_argument_spec_for_commands)

    module = AnsibleModule(argument_spec=argument_spec)

    command = "add-repository-package"

    result = api_command(module, command)
    module.exit_json(**result)

if __name__ == '__main__':
    main()

The play:

chkp-edenbr commented 1 year ago

This isn't one of our modules in the collection.