From 8fc2fe0b7ecf71b675158eabcc00a3a14218abe2 Mon Sep 17 00:00:00 2001 From: Thomas Wiest Date: Wed, 27 May 2015 15:05:13 -0400 Subject: Removed cloud.rb and it's associated libraries as it's no longer used. Also removed etcd role. --- cloud.rb | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 cloud.rb (limited to 'cloud.rb') diff --git a/cloud.rb b/cloud.rb deleted file mode 100755 index 934066662..000000000 --- a/cloud.rb +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env ruby - -require 'thor' -require_relative 'lib/gce_command' -require_relative 'lib/aws_command' - -# Don't buffer output to the client -STDOUT.sync = true -STDERR.sync = true - -module OpenShift - module Ops - class CloudCommand < Thor - desc 'gce', 'Manages Google Compute Engine assets' - subcommand "gce", GceCommand - - desc 'aws', 'Manages Amazon Web Services assets' - subcommand "aws", AwsCommand - end - end -end - -if __FILE__ == $0 - SCRIPT_DIR = File.expand_path(File.dirname(__FILE__)) - Dir.chdir(SCRIPT_DIR) do - # Kick off thor - OpenShift::Ops::CloudCommand.start(ARGV) - end -end -- cgit v1.2.3