|
|
|
|
|
by mpdehaan2
4319 days ago
|
|
The problem with cluster SSH is it's not declarative, so if one server already has a package, and another does not, your servers will not behave the same if typing into all of them. This is why Ansible modules (and most other config tools) instead describe the desired end state, and perform the commands needed to get you to those states. Basically all config tools arose out of a need for solutions to replace parallel scripting with something more robust that accounted for potential variance between systems, and also to make things more push-button. |
|