summaryrefslogtreecommitdiffstats
path: root/bin/ossh
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2015-05-14 17:19:55 -0400
committerKenny Woodson <kwoodson@redhat.com>2015-05-14 17:19:55 -0400
commit3f97a57f0c862976b4fd1570eb00c22c8484c137 (patch)
tree8e0e0f28c9614c154da597adf572fd7ab0e97cda /bin/ossh
parentff96174e119f0b176580249ec2d022b46b63e074 (diff)
parent88c7ed4ad437f6705d91e4c1ffb2e88c71fb7db4 (diff)
downloadopenshift-3f97a57f0c862976b4fd1570eb00c22c8484c137.tar.gz
openshift-3f97a57f0c862976b4fd1570eb00c22c8484c137.tar.bz2
openshift-3f97a57f0c862976b4fd1570eb00c22c8484c137.tar.xz
openshift-3f97a57f0c862976b4fd1570eb00c22c8484c137.zip
Merge pull request #227 from kwoodson/ec2_library
Update to call multi_ec2 as library for command line tools.
Diffstat (limited to 'bin/ossh')
-rwxr-xr-xbin/ossh8
1 files changed, 1 insertions, 7 deletions
diff --git a/bin/ossh b/bin/ossh
index 196430e13..855c5d8b4 100755
--- a/bin/ossh
+++ b/bin/ossh
@@ -11,11 +11,9 @@ import ConfigParser
from openshift_ansible import awsutil
CONFIG_MAIN_SECTION = 'main'
-CONFIG_INVENTORY_OPTION = 'inventory'
class Ossh(object):
def __init__(self):
- self.inventory = None
self.file_path = os.path.join(os.path.dirname(os.path.realpath(__file__)))
# Default the config path to /etc
@@ -26,7 +24,7 @@ class Ossh(object):
self.parse_cli_args()
self.parse_config_file()
- self.aws = awsutil.AwsUtil(self.inventory)
+ self.aws = awsutil.AwsUtil()
if self.args.refresh_cache:
self.get_hosts(True)
@@ -54,10 +52,6 @@ class Ossh(object):
config = ConfigParser.ConfigParser()
config.read(self.config_path)
- if config.has_section(CONFIG_MAIN_SECTION) and \
- config.has_option(CONFIG_MAIN_SECTION, CONFIG_INVENTORY_OPTION):
- self.inventory = config.get(CONFIG_MAIN_SECTION, CONFIG_INVENTORY_OPTION)
-
def parse_cli_args(self):
parser = argparse.ArgumentParser(description='Openshift Online SSH Tool.')
parser.add_argument('-e', '--env', action="store",