Skip to content

Commit

Permalink
rem!: make cpu-z version v1.75 remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
dafyddj committed Nov 25, 2024
1 parent 3c50028 commit 06a1512
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion cpu-z.sls
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{% load_yaml as remove_only_versions -%}
- '1.75'
{% endload -%}

cpu-z:
{% for version in ['1.94', '1.86', '1.85', '1.84', '1.83', '1.82', '1.81', '1.80', '1.79', '1.78', '1.77', '1.76', '1.75', '1.74', '1.73', '1.72.1', '1.71.1', '1.70', '1.69', '1.68', '1.67', '1.66', '1.65'] %}
{% for version in ['1.94', '1.86', '1.85', '1.84', '1.83', '1.82', '1.81', '1.80', '1.79', '1.78', '1.77', '1.76', '1.74', '1.73', '1.72.1', '1.71.1', '1.70', '1.69', '1.68', '1.67', '1.66', '1.65'] %}
'{{ version }}':
full_name: 'CPUID CPU-Z {{ version }}'
# http url used as https does not exist for download.cpuid.com subdomain
Expand All @@ -11,3 +15,10 @@ cpu-z:
locale: en_US
reboot: False
{% endfor %}

{% for version in remove_only_versions -%}
'{{ version }}':
full_name: 'CPUID CPU-Z {{ version }}'
uninstaller: '%ProgramFiles%\CPUID\CPU-Z\unins000.exe'
uninstall_flags: '/SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
{% endfor -%}

0 comments on commit 06a1512

Please sign in to comment.