2020-11-20 11:27:53 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2021-01-15 21:29:23 +01:00
|
|
|
# (c) 2020, Alexei Znamensky <russoz@gmail.com>
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2020, Ansible Project
|
|
|
|
# Simplified BSD License (see LICENSES/BSD-2-Clause.txt or https://opensource.org/licenses/BSD-2-Clause)
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-11-20 11:27:53 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
2023-05-02 20:48:46 +02:00
|
|
|
# pylint: disable=unused-import
|
2020-11-20 11:27:53 +01:00
|
|
|
|
2023-05-02 20:48:46 +02:00
|
|
|
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.module_helper import (
|
2023-10-09 13:31:27 +02:00
|
|
|
ModuleHelper, StateModuleHelper, AnsibleModule
|
2021-05-11 19:31:10 +02:00
|
|
|
)
|
2023-05-02 20:48:46 +02:00
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.mixins.state import StateMixin # noqa: F401
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.mixins.deps import DependencyCtxMgr, DependencyMixin # noqa: F401
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.exceptions import ModuleHelperException # noqa: F401
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.deco import (
|
|
|
|
cause_changes, module_fails_on_exception, check_mode_skip, check_mode_skip_returns,
|
|
|
|
)
|
|
|
|
from ansible_collections.community.general.plugins.module_utils.mh.mixins.vars import VarMeta, VarDict, VarsMixin # noqa: F401
|