Skip to content

Commit

Permalink
Only Debian-like minions/clients require wget in our testsuite (#1734)
Browse files Browse the repository at this point in the history
  • Loading branch information
srbarrios authored Oct 10, 2024
1 parent 405a61e commit ce71377
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions salt/client/testsuite.sls
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ client_cucumber_requisites:
- spacewalk-client-setup
- spacewalk-check
- mgr-cfg-actions
# Debian based systems don't come with curl installed, the test suite handles it with wget instead
{% if grains['os_family'] == 'Debian' %}
- wget
{% endif %}
- require:
- sls: default

Expand Down
3 changes: 3 additions & 0 deletions salt/minion/testsuite.sls
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ minion_cucumber_requisites:
{% else %}
- salt-minion
{% endif %}
# Debian based systems don't come with curl installed, the test suite handles it with wget instead
{% if grains['os_family'] == 'Debian' %}
- wget
{% endif %}
- require:
- sls: default
{% endif %}
Expand Down

0 comments on commit ce71377

Please sign in to comment.