15 lines
504 B
Plaintext
15 lines
504 B
Plaintext
|
{%- import_yaml "systemd/defaults.yaml" as default_settings -%}
|
||
|
|
||
|
{%- import_yaml "systemd/kernelmap.yaml" as kernelmap %}
|
||
|
{%- import_yaml "systemd/osarchmap.yaml" as osarchmap %}
|
||
|
|
||
|
{%- set defaults = salt['grains.filter_by'](default_settings,
|
||
|
default='systemd',
|
||
|
merge=salt['grains.filter_by'](osarchmap, grain='osarch',
|
||
|
merge=salt['grains.filter_by'](kernelmap, grain='kernel')
|
||
|
)
|
||
|
)
|
||
|
-%}
|
||
|
|
||
|
{%- set systemd = salt['pillar.get']('systemd', default=defaults, merge=True) -%}
|