Executing Multiple Commands at Once
Question:
If I have to execute the following three commands, how do I group them so I only have to call one?
Answer:
You can execute all these in one run separating functions and arguments with a comma: salt '*' cmd1,cmd2,cmd3 ,args1,args2,args3
Here's an example: