03fde1b616
This issue is causing logrotate install to fail. https://github.com/saltstack/salt/issues/51925 I've added | json to mitigate.
9 lines
244 B
Text
9 lines
244 B
Text
# -*- coding: utf-8 -*-
|
|
# vim: ft=sls
|
|
|
|
{% from "logrotate/map.jinja" import logrotate with context %}
|
|
|
|
{% set pkgs = [logrotate.pkg] if logrotate.pkg is string else logrotate.pkg %}
|
|
logrotate-pkg:
|
|
pkg.installed:
|
|
- pkgs: {{ pkgs | json }}
|