If I have to execute the following 3 commands, how do I group them so I only have to call one?
salt '*' git.fetch cwd=/var/git/myproject opts='--all' user=git
salt '*' git.pull cwd=/var/git/myproject opts='origin master'
salt '*' nginx.signal reload
I can use fabric to put those in a single function say deploy
which might accept a minion name then run through master, but I'm wondering if saltstack has something built-in?