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/cheetah.py
"""
Cheetah Renderer for Salt
"""

try:
    from Cheetah.Template import Template

    HAS_LIBS = True
except ImportError:
    HAS_LIBS = False


def render(cheetah_data, saltenv="base", sls="", method="xml", **kws):
    """
    Render a Cheetah template.

    :rtype: A Python data structure
    """
    if not HAS_LIBS:
        return {}

    if not isinstance(cheetah_data, str):
        cheetah_data = cheetah_data.read()

    if cheetah_data.startswith("#!"):
        cheetah_data = cheetah_data[(cheetah_data.find("\n") + 1) :]
    if not cheetah_data.strip():
        return {}

    return str(Template(cheetah_data, searchList=[kws]))