PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/states/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/states/eselect.py

"""
Management of Gentoo configuration using eselect
================================================

A state module to manage Gentoo configuration via eselect

"""

# Define a function alias in order not to shadow built-in's
__func_alias__ = {"set_": "set"}


def __virtual__():
    """
    Only load if the eselect module is available in __salt__
    """
    if "eselect.exec_action" in __salt__:
        return "eselect"
    return (False, "eselect module could not be loaded")


def set_(name, target, module_parameter=None, action_parameter=None):
    """
    Verify that the given module is set to the given target

    name
        The name of the module

    target
        The target to be set for this module

    module_parameter
        additional params passed to the defined module

    action_parameter
        additional params passed to the defined action

    .. code-block:: yaml

        profile:
          eselect.set:
            - target: hardened/linux/amd64
    """
    ret = {"changes": {}, "comment": "", "name": name, "result": True}

    old_target = __salt__["eselect.get_current_target"](
        name, module_parameter=module_parameter, action_parameter=action_parameter
    )

    if target == old_target:
        ret["comment"] = "Target '{}' is already set on '{}' module.".format(
            target, name
        )
    elif target not in __salt__["eselect.get_target_list"](
        name, action_parameter=action_parameter
    ):
        ret["comment"] = "Target '{}' is not available for '{}' module.".format(
            target, name
        )
        ret["result"] = False
    elif __opts__["test"]:
        ret["comment"] = f"Target '{target}' will be set on '{name}' module."
        ret["result"] = None
    else:
        result = __salt__["eselect.set_target"](
            name,
            target,
            module_parameter=module_parameter,
            action_parameter=action_parameter,
        )
        if result:
            ret["changes"][name] = {"old": old_target, "new": target}
            ret["comment"] = f"Target '{target}' set on '{name}' module."
        else:
            ret["comment"] = "Target '{}' failed to be set on '{}' module.".format(
                target, name
            )
            ret["result"] = False
    return ret