diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lib/aws_command.rb | 2 | ||||
| -rw-r--r-- | lib/aws_helper.rb | 2 | ||||
| -rw-r--r-- | lib/gce_command.rb | 2 | 
4 files changed, 4 insertions, 4 deletions
@@ -8,7 +8,7 @@ Setup  - Install base dependencies:    - Fedora:    ``` -    yum install ansible rubygem-parseconfig +    yum install -y ansible rubygem-thor rubygem-parseconfig    ```  - Setup for a specific cloud: diff --git a/lib/aws_command.rb b/lib/aws_command.rb index 865901585..1067547e0 100644 --- a/lib/aws_command.rb +++ b/lib/aws_command.rb @@ -7,7 +7,7 @@ module OpenShift    module Ops      class AwsCommand < Thor        # WARNING: we do not currently support environments with hyphens in the name -      SUPPORTED_ENVS = %w(prod stg int tint kint test jint) +      SUPPORTED_ENVS = %w(prod stg int tint kint test jint amint tdint)        option :type, :required => true, :enum => LaunchHelper.get_aws_host_types,               :desc => 'The host type of the new instances.' diff --git a/lib/aws_helper.rb b/lib/aws_helper.rb index 8af39c834..2e90ba148 100644 --- a/lib/aws_helper.rb +++ b/lib/aws_helper.rb @@ -51,7 +51,7 @@ module OpenShift        def self.clear_inventory_cache()          path = "#{ENV['HOME']}/.ansible/tmp"          cache_files = ["#{path}/ansible-ec2.cache", "#{path}/ansible-ec2.index"] -        FileUtils.rm(cache_files) +        FileUtils.rm_f(cache_files)        end        def self.generate_env_tag(env) diff --git a/lib/gce_command.rb b/lib/gce_command.rb index e8e00b746..384a90c0e 100644 --- a/lib/gce_command.rb +++ b/lib/gce_command.rb @@ -10,7 +10,7 @@ module OpenShift    module Ops      class GceCommand < Thor        # WARNING: we do not currently support environments with hyphens in the name -      SUPPORTED_ENVS = %w(prod stg int tint kint test jint) +      SUPPORTED_ENVS = %w(prod stg int tint kint test jint amint tdint)        option :type, :required => true, :enum => LaunchHelper.get_gce_host_types,               :desc => 'The host type of the new instances.'  | 
