Selaa lähdekoodia

Allow purging and removing packages

tags/2016.12
Filip Pytloun 8 vuotta sitten
vanhempi
commit
329a31d67e
1 muutettua tiedostoa jossa 6 lisäystä ja 2 poistoa
  1. +6
    -2
      linux/system/package.sls

+ 6
- 2
linux/system/package.sls Näytä tiedosto

@@ -10,6 +10,10 @@ linux_packages:
linux_extra_package_{{ name }}:
{%- if package.version == 'latest' %}
pkg.latest:
{%- elif package.version == 'purged' %}
pkg.purged:
{%- elif package.version == 'removed' %}
pkg.removed:
{%- else %}
pkg.installed:
- version: {{ package.version }}
@@ -22,8 +26,8 @@ linux_extra_package_{{ name }}:
- hold: {{ package.hold }}
{%- endif %}
{%- if package.verify is defined %}
- skip_verify: {% if package.verify %}false{% else %}true{% endif %}
- skip_verify: {{ true if package.verify else false }}
{%- endif %}
{%- endfor %}

{%- endif %}
{%- endif %}

Loading…
Peruuta
Tallenna