diff --git a/README.md b/README.md index c1b1f98..c3cc5f0 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,9 @@ Algo (short for "Al Gore", the **V**ice **P**resident of **N**etworks everywhere * python >= 2.6 * [dopy=0.3.5](https://github.com/Wiredcraft/dopy) * [boto](https://github.com/boto/boto) +* [azure >= 0.7.1](https://github.com/Azure/azure-sdk-for-python) +* [apache-libcloud](https://github.com/apache/libcloud) +* [libcloud](https://curl.haxx.se/docs/caextract.html) (for Mac OS) * SHell or BASH * libselinux-python (for RedHat based distros) diff --git a/config.cfg b/config.cfg index bfd3aa2..c17bbf4 100644 --- a/config.cfg +++ b/config.cfg @@ -30,6 +30,3 @@ users: # auditd options # email for auditd actions: auditd_action_mail_acct: email@example.com - - - diff --git a/run b/run index 5283717..bf754c6 100755 --- a/run +++ b/run @@ -5,7 +5,7 @@ algo_provisioning () { What provider would you like to use? 1. DigitalOcean 2. Amazon EC2 - 3. Local installation (non-cloud or a server already deployed) + 0. Local installation (non-cloud or a server already deployed) Enter the number of your desired provider : " @@ -15,7 +15,9 @@ algo_provisioning () { case "$N" in 1) CLOUD="digitalocean" ;; 2) CLOUD="ec2" ;; - 3) CLOUD="non-cloud" ;; + 3) CLOUD="azure" ;; + 4) CLOUD="google_cloud" ;; + 0) CLOUD="non-cloud" ;; *) exit 1 ;; esac