|
|
cf5968 |
Index: euca2ools-2.1.3/euca2ools/commands/euare/__init__.py
|
|
|
cf5968 |
===================================================================
|
|
|
cf5968 |
--- euca2ools-2.1.3.orig/euca2ools/commands/euare/__init__.py
|
|
|
cf5968 |
+++ euca2ools-2.1.3/euca2ools/commands/euare/__init__.py
|
|
|
cf5968 |
@@ -46,3 +46,6 @@ class Euare(AWSQueryService):
|
|
|
cf5968 |
Regions = [{"endpoint": "iam.amazonaws.com",
|
|
|
cf5968 |
"name": "us-east-1",
|
|
|
cf5968 |
"description": "US-East (Northern Virginia)"}]
|
|
|
cf5968 |
+
|
|
|
cf5968 |
+ def __init__(self, **args):
|
|
|
cf5968 |
+ return AWSQueryService.__init__(self, validate_certs=False, **args)
|
|
|
cf5968 |
Index: euca2ools-2.1.3/euca2ools/commands/eucacommand.py
|
|
|
cf5968 |
===================================================================
|
|
|
cf5968 |
--- euca2ools-2.1.3.orig/euca2ools/commands/eucacommand.py
|
|
|
cf5968 |
+++ euca2ools-2.1.3/euca2ools/commands/eucacommand.py
|
|
|
cf5968 |
@@ -504,7 +504,8 @@ class EucaCommand(object):
|
|
|
cf5968 |
is_secure=self.is_secure, debug=self.debug,
|
|
|
cf5968 |
host=self.host,
|
|
|
cf5968 |
port=self.port,
|
|
|
cf5968 |
- path=self.service_path)
|
|
|
cf5968 |
+ path=self.service_path,
|
|
|
cf5968 |
+ validate_certs=False)
|
|
|
cf5968 |
else:
|
|
|
cf5968 |
return boto.connect_s3(
|
|
|
cf5968 |
aws_access_key_id=self.ec2_user_access_key,
|
|
|
cf5968 |
@@ -513,7 +514,8 @@ class EucaCommand(object):
|
|
|
cf5968 |
host=self.host,
|
|
|
cf5968 |
port=self.port,
|
|
|
cf5968 |
calling_format=OrdinaryCallingFormat(),
|
|
|
cf5968 |
- path=self.service_path)
|
|
|
cf5968 |
+ path=self.service_path,
|
|
|
cf5968 |
+ validate_certs=False)
|
|
|
cf5968 |
|
|
|
cf5968 |
def make_ec2_connection(self):
|
|
|
cf5968 |
if self.region_name:
|
|
|
cf5968 |
@@ -543,7 +545,8 @@ class EucaCommand(object):
|
|
|
cf5968 |
region=self.region,
|
|
|
cf5968 |
port=self.port,
|
|
|
cf5968 |
path=self.service_path,
|
|
|
cf5968 |
- api_version=self.APIVersion)
|
|
|
cf5968 |
+ api_version=self.APIVersion,
|
|
|
cf5968 |
+ validate_certs=False)
|
|
|
cf5968 |
|
|
|
cf5968 |
def make_connection(self, conn_type='ec2'):
|
|
|
cf5968 |
self.get_credentials()
|