CloudControl gives you simplified automation of remote machines in the cloude.
Project description
Description
CloudControl gives you a simplified interface for dealing with a bunch of machines in the cloud. With simple Python syntax, you can script all of your remote machines simultaneously.
Usage
This simple example shows a way to list the running processes on your appservers:
from cloudcontrol import Role appserver = Role("machine1@example.com", "machine2@example.com", "machine3@example.com") appserver.run("ps aux")