0

I can get salt to let me run keytool this way:

salt [host] cmd.run shell=powershell '& "$JRE_HOME/bin/keytool.exe" --help'

But I can't figure out how to put this into a state file. A straightforward translation fails saying "& was unexpected at this time".

cmd.run:
 - shell: powershell
 - name: '& "$JRE_HOME/bin/keytool.exe" --help'

I've tried dozens of variations on this, but have yet to find one that works.

1 Answers1

0

I finally stumbled upon a solution.

  - name: ; & "${env:JRE_HOME}/bin/keytool" --help