HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/thread-self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/renderers/wempy.py
import io

import salt.utils.templates
from salt.exceptions import SaltRenderError


def render(template_file, saltenv="base", sls="", argline="", context=None, **kws):
    """
    Render the data passing the functions and grains into the rendering system

    :rtype: string
    """
    tmp_data = salt.utils.templates.WEMPY(
        template_file,
        to_str=True,
        salt=__salt__,
        grains=__grains__,
        opts=__opts__,
        pillar=__pillar__,
        saltenv=saltenv,
        sls=sls,
        context=context,
        **kws
    )
    if not tmp_data.get("result", False):
        raise SaltRenderError(
            tmp_data.get("data", "Unknown render error in the wempy renderer")
        )
    return io.StringIO(tmp_data["data"])