fix: make necessary modifications to get working on `salt-ssh`
* https://freenode.logbot.info/saltstack-formulas/20200506#c3811885-c3812572
* Avoid `defaults.merge`
* Send template values by `context`, to avoid:
```python
ID: logrotate-config
Function: file.managed
Name: /etc/logrotate.conf
Result: False
Comment: An exception occurred in this state: Traceback (most recent call last):
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/templates.py", line 394, in render_jinja_tmpl
output = template.render(**decoded_context)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/environment.py", line 1008, in render
return self.environment.handle_exception(exc_info, True)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/environment.py", line 780, in handle_exception
reraise(exc_type, exc_value, tb)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/_compat.py", line 37, in reraise
raise value.with_traceback(tb)
File "<template>", line 1, in top-level template code
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/jinja.py", line 193, in get_source
raise TemplateNotFound(template)
jinja2.exceptions.TemplateNotFound: logrotate/map.jinja
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/var/tmp/.root_08c4d3_salt/pyall/salt/state.py", line 1981, in call
**cdata['kwargs'])
File "/var/tmp/.root_08c4d3_salt/pyall/salt/loader.py", line 1977, in wrapper
return f(*args, **kwargs)
File "/var/tmp/.root_08c4d3_salt/pyall/salt/states/file.py", line 3037, in managed
**kwargs
File "/var/tmp/.root_08c4d3_salt/pyall/salt/modules/file.py", line 4846, in check_managed_changes
**kwargs)
File "/var/tmp/.root_08c4d3_salt/pyall/salt/modules/file.py", line 4287, in get_managed
**kwargs)
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/templates.py", line 169, in render_tmpl
output = render_str(tmplstr, context, tmplpath)
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/templates.py", line 443, in render_jinja_tmpl
trace=tracestr)
salt.exceptions.SaltRenderError: Jinja error: logrotate/map.jinja
Traceback (most recent call last):
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/templates.py", line 394, in render_jinja_tmpl
output = template.render(**decoded_context)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/environment.py", line 1008, in render
return self.environment.handle_exception(exc_info, True)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/environment.py", line 780, in handle_exception
reraise(exc_type, exc_value, tb)
File "/var/tmp/.root_08c4d3_salt/pyall/jinja2/_compat.py", line 37, in reraise
raise value.with_traceback(tb)
File "<template>", line 1, in top-level template code
File "/var/tmp/.root_08c4d3_salt/pyall/salt/utils/jinja.py", line 193, in get_source
raise TemplateNotFound(template)
jinja2.exceptions.TemplateNotFound: logrotate/map.jinja
; line 1
---
{%- from "logrotate/map.jinja" import logrotate with context -%} <======================
{%- set config = salt['pillar.get']('logrotate:default_config', logrotate.default_config) -%}
{%- set processed_parameters = [] -%}
{%- macro set_parameter(parameter, default=None) -%}
[...]
```
4 years ago |
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {% from "logrotate/map.jinja" import logrotate with context %}
-
- include:
- - logrotate
-
- {% set ns = namespace(hourly=False) %}
- {% for key, value in logrotate.jobs.items() %}
- {% set contents = value.get('contents', False) %}
- {% if 'hourly' in (contents or value.config) %}
- {% set ns.hourly = True %}
- {% break %}
- {% endif %}
- {% endfor %}
-
- logrotate-config:
- file.managed:
- - name: {{ logrotate.conf_file }}
- - source: salt://logrotate/templates/logrotate.conf.tmpl
- - template: jinja
- - user: {{ salt['config.get']('logrotate:config:user', logrotate.user) }}
- - group: {{ salt['config.get']('logrotate:config:group', logrotate.group) }}
- - mode: {{ salt['config.get']('logrotate:config:mode', '0644') }}
- - context:
- logrotate: {{ logrotate|tojson }}
-
- logrotate-directory:
- file.directory:
- - name: {{ logrotate.include_dir }}
- - user: {{ salt['config.get']('logrotate:config:user', logrotate.user) }}
- - group: {{ salt['config.get']('logrotate:config:group', logrotate.group) }}
- - mode: '0755'
- - makedirs: True
-
- {%- if ns.hourly %}
- logrotate-hourly-config:
- file.managed:
- - name: {{ logrotate.hourly_conf_file }}
- - user: {{ salt['config.get']('logrotate:config:user', logrotate.user) }}
- - group: {{ salt['config.get']('logrotate:config:group', logrotate.group) }}
- - mode: {{ salt['config.get']('logrotate:config:mode', '0644') }}
- - contents:
- - include {{ logrotate.hourly_include_dir }}
-
- logrotate-hourly-directory:
- file.directory:
- - name: {{ logrotate.hourly_include_dir }}
- - user: {{ logrotate.user }}
- - group: {{ logrotate.group }}
- - mode: '0755'
- - makedirs: True
-
- logrotate-hourly-cron:
- file.managed:
- - name: "/etc/cron.hourly/logrotate"
- - source: salt://logrotate/templates/logrotate.hourly.tmpl
- - template: jinja
- - user: {{ salt['config.get']('logrotate:config:user', logrotate.user) }}
- - group: {{ salt['config.get']('logrotate:config:group', logrotate.group) }}
- - mode: '0775'
- - context:
- logrotate: {{ logrotate|tojson }}
-
- {%- endif %}
|