summaryrefslogtreecommitdiffstats
path: root/bin/ossh
diff options
context:
space:
mode:
authorKenny Woodson <kwoodson@redhat.com>2015-05-08 15:00:31 -0400
committerKenny Woodson <kwoodson@redhat.com>2015-05-11 09:57:09 -0400
commitd9b276629476dc2d6de3ef32717bf2035f4338c2 (patch)
tree7732000b1d758f0842ab1b6ce050ef3e8e9141af /bin/ossh
parent4705af597cee2ff523aaede4bb2479c0fc6af430 (diff)
downloadopenshift-d9b276629476dc2d6de3ef32717bf2035f4338c2.tar.gz
openshift-d9b276629476dc2d6de3ef32717bf2035f4338c2.tar.bz2
openshift-d9b276629476dc2d6de3ef32717bf2035f4338c2.tar.xz
openshift-d9b276629476dc2d6de3ef32717bf2035f4338c2.zip
Adding cache location for multi ec2
Diffstat (limited to 'bin/ossh')
-rwxr-xr-xbin/ossh15
1 files changed, 8 insertions, 7 deletions
diff --git a/bin/ossh b/bin/ossh
index c16ea6eda..196430e13 100755
--- a/bin/ossh
+++ b/bin/ossh
@@ -28,11 +28,10 @@ class Ossh(object):
self.aws = awsutil.AwsUtil(self.inventory)
- # get a dict of host inventory
- if self.args.list:
- self.get_hosts()
- else:
+ if self.args.refresh_cache:
self.get_hosts(True)
+ else:
+ self.get_hosts()
# parse host and user
self.process_host()
@@ -67,6 +66,8 @@ class Ossh(object):
action="store_true", help="debug mode")
parser.add_argument('-v', '--verbose', default=False,
action="store_true", help="Verbose?")
+ parser.add_argument('--refresh-cache', default=False,
+ action="store_true", help="Force a refresh on the host cache.")
parser.add_argument('--list', default=False,
action="store_true", help="list out hosts")
parser.add_argument('-c', '--command', action='store',
@@ -109,14 +110,14 @@ class Ossh(object):
if self.args.login_name:
self.user = self.args.login_name
- def get_hosts(self, cache_only=False):
+ def get_hosts(self, refresh_cache=False):
'''Query our host inventory and return a dict where the format
equals:
dict['servername'] = dns_name
'''
- if cache_only:
- self.host_inventory = self.aws.build_host_dict_by_env(['--cache-only'])
+ if refresh_cache:
+ self.host_inventory = self.aws.build_host_dict_by_env(['--refresh-cache'])
else:
self.host_inventory = self.aws.build_host_dict_by_env()