mirror of
https://github.com/saltstack-formulas/php-formula.git
synced 2025-04-15 17:20:24 +00:00
13 lines
353 B
Django/Jinja
13 lines
353 B
Django/Jinja
# yamllint disable rule:indentation rule:line-length
|
|
# {{ grains.get("osfinger", grains.os) }}
|
|
---
|
|
{#- use salt.slsutil.serialize to avoid encoding errors on some platforms #}
|
|
{{ salt["slsutil.serialize"](
|
|
"yaml",
|
|
map,
|
|
default_flow_style=False,
|
|
allow_unicode=True,
|
|
)
|
|
| regex_replace("^\s+'$", "'", multiline=True)
|
|
| trim
|
|
}}
|