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/wheel/
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/wheel/config.py

"""
Manage the master configuration file
"""

import logging
import os

import salt.config
import salt.utils.files
import salt.utils.verify
import salt.utils.yaml

log = logging.getLogger(__name__)


def values():
    """
    Return the raw values of the config file
    """
    data = salt.config.master_config(__opts__["conf_file"])
    return data


def apply(key, value):
    """
    Set a single key

    .. note::

        This will strip comments from your config file
    """
    path = __opts__["conf_file"]
    if os.path.isdir(path):
        path = os.path.join(path, "master")
    data = values()
    data[key] = value
    with salt.utils.files.fopen(path, "w+") as fp_:
        salt.utils.yaml.safe_dump(data, default_flow_style=False)


def update_config(file_name, yaml_contents):
    """
    Update master config with
    ``yaml_contents``.

    Writes ``yaml_contents`` to a file named
    ``file_name.conf`` under the folder
    specified by ``default_include``.
    This folder is named ``master.d`` by
    default. Please look at
    :conf_master:`include-configuration`
    for more information.

    Example low data:

    .. code-block:: python

        data = {
            'username': 'salt',
            'password': 'salt',
            'fun': 'config.update_config',
            'file_name': 'gui',
            'yaml_contents': {'id': 1},
            'client': 'wheel',
            'eauth': 'pam',
        }
    """
    file_name = "{}{}".format(file_name, ".conf")
    dir_path = os.path.join(
        __opts__["config_dir"], os.path.dirname(__opts__["default_include"])
    )
    try:
        yaml_out = salt.utils.yaml.safe_dump(
            yaml_contents,
            default_flow_style=False,
        )

        if not os.path.exists(dir_path):
            log.debug("Creating directory %s", dir_path)
            os.makedirs(dir_path, 0o755)

        file_path = os.path.join(dir_path, file_name)
        if not salt.utils.verify.clean_path(dir_path, file_path):
            return "Invalid path"

        with salt.utils.files.fopen(file_path, "w") as fp_:
            fp_.write(yaml_out)

        return f"Wrote {file_name}"
    except (OSError, salt.utils.yaml.YAMLError, ValueError) as err:
        return str(err)