New version of salt-formula from Saltstack
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

7 lines
222B

  1. #!/bin/bash
  2. salt-call state.show_highstate --out yaml > ./highstate
  3. python salt-state-graph.py < ./highstate > ./highstate.dot
  4. dot -Tpng < ./highstate.dot -o ./highstate.png
  5. dot -Tsvg < ./highstate.dot -o ./highstate.svg