Browse Source

Merge pull request #65 from lhuard1A/osx

Allows it to run on OSX
Thomas Wiest 10 years ago
parent
commit
fed63a0aeb
4 changed files with 15 additions and 4 deletions
  1. 7 1
      README.md
  2. 5 0
      README_AWS.md
  3. 1 1
      lib/aws_command.rb
  4. 2 2
      lib/gce_command.rb

+ 7 - 1
README.md

@@ -10,7 +10,13 @@ Setup
   ```
     yum install -y ansible rubygem-thor rubygem-parseconfig util-linux
   ```
-
+   - OSX:
+  ```
+    # Install ansible and python 2
+    brew install ansible python
+    # Required ruby gems
+    gem install thor parseconfig
+  ```
 - Setup for a specific cloud:
   - [AWS](README_AWS.md)
   - [GCE](README_GCE.md)

+ 5 - 0
README_AWS.md

@@ -38,9 +38,14 @@ Alternatively, you can configure your ssh-agent to hold the credentials to conne
 Install Dependencies
 --------------------
 1. Ansible requires python-boto for aws operations:
+RHEL/CentOS/Fedora
 ```
   yum install -y ansible python-boto
 ```
+OSX:
+```
+  pip install -U boto
+```
 
 
 Test The Setup

+ 1 - 1
lib/aws_command.rb

@@ -114,7 +114,7 @@ module OpenShift
 
       desc "ssh", "Ssh to an instance"
       def ssh(*ssh_ops, host)
-        if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)/
+        if host =~ /^([\w\d_.\-]+)@([\w\d\-_.]+)/
           user = $1
           host = $2
         end

+ 2 - 2
lib/gce_command.rb

@@ -143,7 +143,7 @@ module OpenShift
              :desc => 'A relative path where files are written to.'
       desc "scp_from", "scp files from an instance"
       def scp_from(*ssh_ops, host)
-        if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)$/
+        if host =~ /^([\w\d_.\-]+)@([\w\d\-_.]+)$/
           user = $1
           host = $2
         end
@@ -175,7 +175,7 @@ module OpenShift
 
       desc "ssh", "Ssh to an instance"
       def ssh(*ssh_ops, host)
-        if host =~ /^([\w\d_.-]+)@([\w\d-_.]+)/
+        if host =~ /^([\w\d_.\-]+)@([\w\d\-_.]+)/
           user = $1
           host = $2
         end