7 lines
157 B
Plaintext
7 lines
157 B
Plaintext
{% for package, args in pillar['packages'].items() %}
|
|
{% if args['status'] != 'ignore' %}
|
|
{{ package }}:
|
|
pkg.{{ args['status'] }}
|
|
{% endif %}
|
|
{% endfor %}
|