salt-common/sls/lib/http-parser.sls
2019-04-03 14:54:52 +03:00

12 lines
336 B
Plaintext

{% set libs_packaged = salt['pillar.get']('libs:packaged', False) %}
{% set http_parser_version = salt['pillar.get']('http-parser:version', '~>=2.9.0') %}
net-libs/http-parser:
pkg.installed:
- version: "{{ http_parser_version }}"
{% if libs_packaged %}
- binhost: force
{% else %}
- binhost: try
{% endif %}