salt/states/update/init.sls

9 lines
161 B
Text

update:
pkg.uptodate:
- refresh: True
{% if grains['os_family'] == 'Arch' %}
clear_pkg_cache:
cmd.run:
- name: "pacman -Sc --noconfirm"
{% endif %}