|
123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- # vim: ft=jinja
-
- {#- Get the `tplroot` from `tpldir` #}
- {%- set tplroot = tpldir.split('/')[0] %}
- {#- Start imports as #}
- {%- import_yaml tplroot ~ "/defaults.yaml" as default_settings %}
- {%- import_yaml tplroot ~ "/osfamilymap.yaml" as osfamilymap %}
- {%- import_yaml tplroot ~ "/osmap.yaml" as osmap %}
- {%- import_yaml tplroot ~ "/osfingermap.yaml" as osfingermap %}
-
- {%- set defaults = salt['grains.filter_by'](default_settings,
- default='chrony',
- merge=salt['grains.filter_by'](osfamilymap, grain='os_family',
- merge=salt['grains.filter_by'](osmap, grain='os',
- merge=salt['grains.filter_by'](osfingermap, grain='osfinger',
- merge=salt['pillar.get']('chrony:lookup', default={})
- )
- )
- )
- ) %}
-
- {#- Merge the chrony pillar #}
- {%- set chrony = salt['pillar.get']('chrony', default=defaults, merge=True) %}
|