浏览代码

chore(map.jinja): update map to match template's

tags/v0.11.5
Javier Bértoli 4 年前
父节点
当前提交
aced96bbf7
共有 1 个文件被更改,包括 31 次插入8 次删除
  1. +31
    -8
      logrotate/map.jinja

+ 31
- 8
logrotate/map.jinja 查看文件

# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# vim: ft=jinja # vim: ft=jinja


{%- import_yaml "logrotate/defaults.yaml" as default_settings %}
{%- import_yaml "logrotate/osfamilymap.yaml" as osfamilymap %}
{%- import_yaml "logrotate/osmap.yaml" as osmap %}
{#- 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 %}


{#- Retrieve the config dict only once #} {#- Retrieve the config dict only once #}
{%- set _config = salt['config.get']('logrotate', default={}) %}
{%- set _config = salt['config.get'](tplroot, default={}) %}

{%- set defaults = salt['grains.filter_by']( {%- set defaults = salt['grains.filter_by'](
default_settings, default_settings,
default='logrotate',
default=tplroot,
merge=salt['grains.filter_by']( merge=salt['grains.filter_by'](
osfamilymap, osfamilymap,
grain='os_family', grain='os_family',
osmap, osmap,
grain='os', grain='os',
merge=salt['grains.filter_by']( merge=salt['grains.filter_by'](
_config,
default='lookup'
osfingermap,
grain='osfinger',
merge=salt['grains.filter_by'](
_config,
default='lookup'
)
) )
) )
) )
) )
%} %}


{%- set logrotate = defaults %}
{%- set config = salt['grains.filter_by'](
{'defaults': defaults},
default='defaults',
merge=_config
)
%}

{#- Change **logrotate** to match with your formula's name and then remove this line #}
{%- set logrotate = config %}

{#- Post-processing for specific non-YAML customisations #}
{%- if grains.os == 'MacOS' %}
{%- set macos_group = salt['cmd.run']("stat -f '%Sg' /dev/console") %}
{%- do logrotate.update({'rootgroup': macos_group}) %}
{%- endif %}

正在加载...
取消
保存