Skip to content

Commit

Permalink
fix(libsaltcli): update salt-ssh detection for enable_ssh_minions
Browse files Browse the repository at this point in the history
* Automated using myii/ssf-formula#161
  • Loading branch information
myii committed Apr 19, 2020
1 parent 19cded8 commit f0e7192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TEMPLATE/libsaltcli.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{%- if opts_cli == 'salt-minion' %}
{%- set cli = 'minion' %}
{%- elif opts_cli == 'salt-call' %}
{%- set cli = 'ssh' if opts_masteropts_cli == 'salt-ssh' else 'local' %}
{%- set cli = 'ssh' if opts_masteropts_cli in ('salt-ssh', 'salt-master') else 'local' %}
{%- else %}
{%- set cli = 'unknown' %}
{%- endif %}
Expand Down

0 comments on commit f0e7192

Please sign in to comment.