Advantages of a deployment tool over shell
- by Jimmy
Currently I have all of my deployment scripts in shell, which installs about 10 programs and configures them. The way I see it shell is a fantastic tool for this:
Modular: Only one program per script, this way I can spread the programs across different servers
Simple: Shell scripts are extremely simple and don't need any other software installed
…