|
|
adca06 |
diff -uNr a/awscli/alias.py b/awscli/alias.py
|
|
|
adca06 |
--- a/awscli/alias.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/alias.py 2018-01-26 13:10:00.592942535 +0100
|
|
|
adca06 |
@@ -15,6 +15,8 @@
|
|
|
adca06 |
import shlex
|
|
|
adca06 |
import subprocess
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.configloader import raw_config_parse
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.compat import compat_shell_quote
|
|
|
adca06 |
diff -uNr a/awscli/argprocess.py b/awscli/argprocess.py
|
|
|
adca06 |
--- a/awscli/argprocess.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/argprocess.py 2018-01-26 13:10:20.958750211 +0100
|
|
|
adca06 |
@@ -15,6 +15,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
from awscli.compat import six
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import OrderedDict, json
|
|
|
adca06 |
|
|
|
adca06 |
from awscli import SCALAR_TYPES, COMPLEX_TYPES
|
|
|
adca06 |
diff -uNr a/awscli/arguments.py b/awscli/arguments.py
|
|
|
adca06 |
--- a/awscli/arguments.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/arguments.py 2018-01-26 13:10:57.422405868 +0100
|
|
|
adca06 |
@@ -38,6 +38,8 @@
|
|
|
adca06 |
"""
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
from botocore.hooks import first_non_none_response
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/clidocs.py b/awscli/clidocs.py
|
|
|
adca06 |
--- a/awscli/clidocs.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/clidocs.py 2018-01-26 13:09:41.085126755 +0100
|
|
|
adca06 |
@@ -12,6 +12,8 @@
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
import logging
|
|
|
adca06 |
import os
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
from botocore.docs.bcdoc.docevents import DOC_EVENTS
|
|
|
adca06 |
from botocore.model import StringShape
|
|
|
adca06 |
diff -uNr a/awscli/clidriver.py b/awscli/clidriver.py
|
|
|
adca06 |
--- a/awscli/clidriver.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/clidriver.py 2018-01-26 13:10:06.539886375 +0100
|
|
|
adca06 |
@@ -14,6 +14,7 @@
|
|
|
adca06 |
import signal
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
import botocore.session
|
|
|
adca06 |
from botocore import __version__ as botocore_version
|
|
|
adca06 |
from botocore.hooks import HierarchicalEmitter
|
|
|
adca06 |
diff -uNr a/awscli/compat.py b/awscli/compat.py
|
|
|
adca06 |
--- a/awscli/compat.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/compat.py 2018-01-26 13:11:17.419217029 +0100
|
|
|
adca06 |
@@ -16,6 +16,7 @@
|
|
|
adca06 |
import platform
|
|
|
adca06 |
import zipfile
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import six
|
|
|
adca06 |
#import botocore.compat
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/assumerole.py b/awscli/customizations/assumerole.py
|
|
|
adca06 |
--- a/awscli/customizations/assumerole.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/assumerole.py 2018-01-26 13:05:13.931649607 +0100
|
|
|
adca06 |
@@ -1,6 +1,8 @@
|
|
|
adca06 |
import os
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ProfileNotFound
|
|
|
adca06 |
from botocore.credentials import JSONFileCache
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/awslambda.py b/awscli/customizations/awslambda.py
|
|
|
adca06 |
--- a/awscli/customizations/awslambda.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/awslambda.py 2018-01-26 13:07:06.376587737 +0100
|
|
|
adca06 |
@@ -14,6 +14,8 @@
|
|
|
adca06 |
import copy
|
|
|
adca06 |
from contextlib import closing
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.vendored import six
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.arguments import CustomArgument, CLIArgument
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudformation/deployer.py b/awscli/customizations/cloudformation/deployer.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudformation/deployer.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudformation/deployer.py 2018-01-26 13:08:05.525029173 +0100
|
|
|
adca06 |
@@ -14,6 +14,7 @@
|
|
|
adca06 |
import sys
|
|
|
adca06 |
import time
|
|
|
adca06 |
import logging
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
import botocore
|
|
|
adca06 |
import collections
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudformation/package.py b/awscli/customizations/cloudformation/package.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudformation/package.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudformation/package.py 2018-01-26 13:07:59.865082622 +0100
|
|
|
adca06 |
@@ -17,6 +17,7 @@
|
|
|
adca06 |
|
|
|
adca06 |
import json
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.client import Config
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.customizations.cloudformation.artifact_exporter import Template
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudfront.py b/awscli/customizations/cloudfront.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudfront.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudfront.py 2018-01-26 13:07:51.406162504 +0100
|
|
|
adca06 |
@@ -15,6 +15,7 @@
|
|
|
adca06 |
from cryptography.hazmat.primitives import serialization, hashes
|
|
|
adca06 |
from cryptography.hazmat.primitives.asymmetric import padding
|
|
|
adca06 |
from cryptography.hazmat.backends import default_backend
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.utils import parse_to_aware_datetime
|
|
|
adca06 |
from botocore.signers import CloudFrontSigner
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudsearch.py b/awscli/customizations/cloudsearch.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudsearch.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudsearch.py 2018-01-26 13:09:14.013382406 +0100
|
|
|
adca06 |
@@ -14,6 +14,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.customizations.flatten import FlattenArguments, SEP
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import OrderedDict
|
|
|
adca06 |
|
|
|
adca06 |
LOG = logging.getLogger(__name__)
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudtrail/subscribe.py b/awscli/customizations/cloudtrail/subscribe.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudtrail/subscribe.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudtrail/subscribe.py 2018-01-26 13:09:31.120220859 +0100
|
|
|
adca06 |
@@ -17,6 +17,7 @@
|
|
|
adca06 |
from .utils import get_account_id
|
|
|
adca06 |
from awscli.customizations.commands import BasicCommand
|
|
|
adca06 |
from awscli.customizations.utils import s3_bucket_exists
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/cloudtrail/validation.py b/awscli/customizations/cloudtrail/validation.py
|
|
|
adca06 |
--- a/awscli/customizations/cloudtrail/validation.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/cloudtrail/validation.py 2018-01-26 13:09:24.109287066 +0100
|
|
|
adca06 |
@@ -28,6 +28,7 @@
|
|
|
adca06 |
from awscli.customizations.cloudtrail.utils import get_trail_by_arn, \
|
|
|
adca06 |
get_account_id_from_arn
|
|
|
adca06 |
from awscli.customizations.commands import BasicCommand
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/codecommit.py b/awscli/customizations/codecommit.py
|
|
|
adca06 |
--- a/awscli/customizations/codecommit.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/codecommit.py 2018-01-26 13:07:32.888337376 +0100
|
|
|
adca06 |
@@ -18,6 +18,7 @@
|
|
|
adca06 |
import fileinput
|
|
|
adca06 |
import datetime
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.auth import SigV4Auth
|
|
|
adca06 |
from botocore.awsrequest import AWSRequest
|
|
|
adca06 |
from botocore.compat import urlsplit
|
|
|
adca06 |
diff -uNr a/awscli/customizations/codedeploy/deregister.py b/awscli/customizations/codedeploy/deregister.py
|
|
|
adca06 |
--- a/awscli/customizations/codedeploy/deregister.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/codedeploy/deregister.py 2018-01-26 13:08:35.275748222 +0100
|
|
|
adca06 |
@@ -13,6 +13,7 @@
|
|
|
adca06 |
|
|
|
adca06 |
import sys
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.customizations.commands import BasicCommand
|
|
|
adca06 |
diff -uNr a/awscli/customizations/codedeploy/push.py b/awscli/customizations/codedeploy/push.py
|
|
|
adca06 |
--- a/awscli/customizations/codedeploy/push.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/codedeploy/push.py 2018-01-26 13:08:28.662810672 +0100
|
|
|
adca06 |
@@ -18,6 +18,7 @@
|
|
|
adca06 |
import contextlib
|
|
|
adca06 |
from datetime import datetime
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.compat import six
|
|
|
adca06 |
diff -uNr a/awscli/customizations/commands.py b/awscli/customizations/commands.py
|
|
|
adca06 |
--- a/awscli/customizations/commands.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/commands.py 2018-01-26 13:09:04.583471457 +0100
|
|
|
adca06 |
@@ -1,6 +1,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
import os
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import model
|
|
|
adca06 |
from botocore.compat import OrderedDict
|
|
|
adca06 |
from botocore.validate import validate_parameters
|
|
|
adca06 |
diff -uNr a/awscli/customizations/configure/addmodel.py b/awscli/customizations/configure/addmodel.py
|
|
|
adca06 |
--- a/awscli/customizations/configure/addmodel.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/configure/addmodel.py 2018-01-26 13:06:54.673698254 +0100
|
|
|
adca06 |
@@ -13,6 +13,8 @@
|
|
|
adca06 |
import json
|
|
|
adca06 |
import os
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.model import ServiceModel
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.customizations.commands import BasicCommand
|
|
|
adca06 |
diff -uNr a/awscli/customizations/configure/configure.py b/awscli/customizations/configure/configure.py
|
|
|
adca06 |
--- a/awscli/customizations/configure/configure.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/configure/configure.py 2018-01-26 13:06:42.425813916 +0100
|
|
|
adca06 |
@@ -13,6 +13,8 @@
|
|
|
adca06 |
import os
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ProfileNotFound
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.compat import compat_input
|
|
|
adca06 |
diff -uNr a/awscli/customizations/configure/__init__.py b/awscli/customizations/configure/__init__.py
|
|
|
adca06 |
--- a/awscli/customizations/configure/__init__.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/configure/__init__.py 2018-01-26 13:06:37.421861170 +0100
|
|
|
adca06 |
@@ -11,6 +11,8 @@
|
|
|
adca06 |
# ANY KIND, either express or implied. See the License for the specific
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
import string
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.vendored.six.moves import shlex_quote
|
|
|
adca06 |
|
|
|
adca06 |
NOT_SET = '<not set>'
|
|
|
adca06 |
diff -uNr a/awscli/customizations/datapipeline/createdefaultroles.py b/awscli/customizations/datapipeline/createdefaultroles.py
|
|
|
adca06 |
--- a/awscli/customizations/datapipeline/createdefaultroles.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/datapipeline/createdefaultroles.py 2018-01-26 13:09:36.179173085 +0100
|
|
|
adca06 |
@@ -24,6 +24,8 @@
|
|
|
adca06 |
from awscli.customizations.commands import BasicCommand
|
|
|
adca06 |
from awscli.customizations.datapipeline.translator \
|
|
|
adca06 |
import display_response, dict_to_string, get_region
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
LOG = logging.getLogger(__name__)
|
|
|
adca06 |
diff -uNr a/awscli/customizations/ec2/addcount.py b/awscli/customizations/ec2/addcount.py
|
|
|
adca06 |
--- a/awscli/customizations/ec2/addcount.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/ec2/addcount.py 2018-01-26 13:08:09.954987338 +0100
|
|
|
adca06 |
@@ -12,6 +12,8 @@
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import model
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.arguments import BaseCLIArgument
|
|
|
adca06 |
diff -uNr a/awscli/customizations/ec2/decryptpassword.py b/awscli/customizations/ec2/decryptpassword.py
|
|
|
adca06 |
--- a/awscli/customizations/ec2/decryptpassword.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/ec2/decryptpassword.py 2018-01-26 13:08:15.792932208 +0100
|
|
|
adca06 |
@@ -16,6 +16,8 @@
|
|
|
adca06 |
from cryptography.hazmat.primitives.asymmetric import padding
|
|
|
adca06 |
from awscli.compat import six
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import model
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.arguments import BaseCLIArgument
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/createcluster.py b/awscli/customizations/emr/createcluster.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/createcluster.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/createcluster.py 2018-01-26 13:04:05.229298393 +0100
|
|
|
adca06 |
@@ -28,6 +28,8 @@
|
|
|
adca06 |
from awscli.customizations.emr.command import Command
|
|
|
adca06 |
from awscli.customizations.emr.constants import EC2_ROLE_NAME
|
|
|
adca06 |
from awscli.customizations.emr.constants import EMR_ROLE_NAME
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import json
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/createdefaultroles.py b/awscli/customizations/emr/createdefaultroles.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/createdefaultroles.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/createdefaultroles.py 2018-01-26 13:04:47.028903661 +0100
|
|
|
adca06 |
@@ -13,6 +13,8 @@
|
|
|
adca06 |
|
|
|
adca06 |
import logging
|
|
|
adca06 |
import re
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
import botocore.exceptions
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/describecluster.py b/awscli/customizations/emr/describecluster.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/describecluster.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/describecluster.py 2018-01-26 13:04:12.891226039 +0100
|
|
|
adca06 |
@@ -16,6 +16,8 @@
|
|
|
adca06 |
from awscli.customizations.emr import emrutils
|
|
|
adca06 |
from awscli.customizations.emr import helptext
|
|
|
adca06 |
from awscli.customizations.emr.command import Command
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import NoCredentialsError
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/emrfsutils.py b/awscli/customizations/emr/emrfsutils.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/emrfsutils.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/emrfsutils.py 2018-01-26 13:03:57.650369965 +0100
|
|
|
adca06 |
@@ -14,6 +14,8 @@
|
|
|
adca06 |
from awscli.customizations.emr import constants
|
|
|
adca06 |
from awscli.customizations.emr import emrutils
|
|
|
adca06 |
from awscli.customizations.emr import exceptions
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import OrderedDict
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/emrutils.py b/awscli/customizations/emr/emrutils.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/emrutils.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/emrutils.py 2018-01-26 13:04:20.074158208 +0100
|
|
|
adca06 |
@@ -19,6 +19,8 @@
|
|
|
adca06 |
from awscli.clidriver import CLIOperationCaller
|
|
|
adca06 |
from awscli.customizations.emr import constants
|
|
|
adca06 |
from awscli.customizations.emr import exceptions
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import WaiterError, NoCredentialsError
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/emr/sshutils.py b/awscli/customizations/emr/sshutils.py
|
|
|
adca06 |
--- a/awscli/customizations/emr/sshutils.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/emr/sshutils.py 2018-01-26 13:03:43.736501361 +0100
|
|
|
adca06 |
@@ -16,6 +16,8 @@
|
|
|
adca06 |
from awscli.customizations.emr import exceptions
|
|
|
adca06 |
from awscli.customizations.emr import emrutils
|
|
|
adca06 |
from awscli.customizations.emr import constants
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import WaiterError
|
|
|
adca06 |
|
|
|
adca06 |
LOG = logging.getLogger(__name__)
|
|
|
adca06 |
diff -uNr a/awscli/customizations/generatecliskeleton.py b/awscli/customizations/generatecliskeleton.py
|
|
|
adca06 |
--- a/awscli/customizations/generatecliskeleton.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/generatecliskeleton.py 2018-01-26 13:08:42.166683149 +0100
|
|
|
adca06 |
@@ -13,6 +13,7 @@
|
|
|
adca06 |
import json
|
|
|
adca06 |
import sys
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
from botocore.stub import Stubber
|
|
|
adca06 |
from botocore.utils import ArgumentGenerator
|
|
|
adca06 |
diff -uNr a/awscli/customizations/globalargs.py b/awscli/customizations/globalargs.py
|
|
|
adca06 |
--- a/awscli/customizations/globalargs.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/globalargs.py 2018-01-26 13:08:21.690876511 +0100
|
|
|
adca06 |
@@ -13,6 +13,7 @@
|
|
|
adca06 |
import sys
|
|
|
adca06 |
import os
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.client import Config
|
|
|
adca06 |
from botocore.endpoint import DEFAULT_TIMEOUT
|
|
|
adca06 |
from botocore.handlers import disable_signing
|
|
|
adca06 |
diff -uNr a/awscli/customizations/history/db.py b/awscli/customizations/history/db.py
|
|
|
adca06 |
--- a/awscli/customizations/history/db.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/history/db.py 2018-01-26 13:07:46.435209447 +0100
|
|
|
adca06 |
@@ -18,6 +18,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
from collections import MutableMapping
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.history import BaseHistoryHandler
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.compat import sqlite3
|
|
|
adca06 |
diff -uNr a/awscli/customizations/history/__init__.py b/awscli/customizations/history/__init__.py
|
|
|
adca06 |
--- a/awscli/customizations/history/__init__.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/history/__init__.py 2018-01-26 13:07:39.310276730 +0100
|
|
|
adca06 |
@@ -14,6 +14,7 @@
|
|
|
adca06 |
import sys
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.history import get_global_history_recorder
|
|
|
adca06 |
from botocore.exceptions import ProfileNotFound
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/opsworks.py b/awscli/customizations/opsworks.py
|
|
|
adca06 |
--- a/awscli/customizations/opsworks.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/opsworks.py 2018-01-26 13:05:52.174288464 +0100
|
|
|
adca06 |
@@ -22,6 +22,8 @@
|
|
|
adca06 |
import tempfile
|
|
|
adca06 |
import textwrap
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.compat import shlex_quote, urlopen, ensure_text_type
|
|
|
adca06 |
diff -uNr a/awscli/customizations/paginate.py b/awscli/customizations/paginate.py
|
|
|
adca06 |
--- a/awscli/customizations/paginate.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/paginate.py 2018-01-26 13:08:58.653527456 +0100
|
|
|
adca06 |
@@ -26,6 +26,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
from functools import partial
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
from botocore.exceptions import DataNotFoundError, PaginationError
|
|
|
adca06 |
from botocore import model
|
|
|
adca06 |
diff -uNr a/awscli/customizations/s3/filegenerator.py b/awscli/customizations/s3/filegenerator.py
|
|
|
adca06 |
--- a/awscli/customizations/s3/filegenerator.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/s3/filegenerator.py 2018-01-26 13:03:20.538720427 +0100
|
|
|
adca06 |
@@ -16,6 +16,7 @@
|
|
|
adca06 |
|
|
|
adca06 |
from dateutil.parser import parse
|
|
|
adca06 |
from dateutil.tz import tzlocal
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.customizations.s3.utils import find_bucket_key, get_file_stat
|
|
|
adca06 |
diff -uNr a/awscli/customizations/s3/subcommands.py b/awscli/customizations/s3/subcommands.py
|
|
|
adca06 |
--- a/awscli/customizations/s3/subcommands.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/s3/subcommands.py 2018-01-26 13:03:12.534796012 +0100
|
|
|
adca06 |
@@ -14,6 +14,7 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
import sys
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.client import Config
|
|
|
adca06 |
from dateutil.parser import parse
|
|
|
adca06 |
from dateutil.tz import tzlocal
|
|
|
adca06 |
diff -uNr a/awscli/customizations/s3endpoint.py b/awscli/customizations/s3endpoint.py
|
|
|
adca06 |
--- a/awscli/customizations/s3endpoint.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/s3endpoint.py 2018-01-26 13:05:58.240231181 +0100
|
|
|
adca06 |
@@ -26,6 +26,8 @@
|
|
|
adca06 |
"""
|
|
|
adca06 |
from functools import partial
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.utils import fix_s3_host
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/s3uploader.py b/awscli/customizations/s3uploader.py
|
|
|
adca06 |
--- a/awscli/customizations/s3uploader.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/s3uploader.py 2018-01-26 13:06:04.494172122 +0100
|
|
|
adca06 |
@@ -17,6 +17,7 @@
|
|
|
adca06 |
import os
|
|
|
adca06 |
import sys
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
import botocore
|
|
|
adca06 |
import botocore.exceptions
|
|
|
adca06 |
from s3transfer.manager import TransferManager
|
|
|
adca06 |
diff -uNr a/awscli/customizations/scalarparse.py b/awscli/customizations/scalarparse.py
|
|
|
adca06 |
--- a/awscli/customizations/scalarparse.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/scalarparse.py 2018-01-26 13:05:00.167779585 +0100
|
|
|
adca06 |
@@ -27,6 +27,8 @@
|
|
|
adca06 |
in the future.
|
|
|
adca06 |
|
|
|
adca06 |
"""
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.utils import parse_timestamp
|
|
|
adca06 |
from botocore.exceptions import ProfileNotFound
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/servicecatalog/generateproduct.py b/awscli/customizations/servicecatalog/generateproduct.py
|
|
|
adca06 |
--- a/awscli/customizations/servicecatalog/generateproduct.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/servicecatalog/generateproduct.py 2018-01-26 13:07:18.521473049 +0100
|
|
|
adca06 |
@@ -16,6 +16,7 @@
|
|
|
adca06 |
from awscli.customizations.servicecatalog import helptext
|
|
|
adca06 |
from awscli.customizations.servicecatalog.generatebase \
|
|
|
adca06 |
import GenerateBaseCommand
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import json
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/servicecatalog/generateprovisioningartifact.py b/awscli/customizations/servicecatalog/generateprovisioningartifact.py
|
|
|
adca06 |
--- a/awscli/customizations/servicecatalog/generateprovisioningartifact.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/servicecatalog/generateprovisioningartifact.py 2018-01-26 13:07:12.858526527 +0100
|
|
|
adca06 |
@@ -16,6 +16,7 @@
|
|
|
adca06 |
from awscli.customizations.servicecatalog import helptext
|
|
|
adca06 |
from awscli.customizations.servicecatalog.generatebase \
|
|
|
adca06 |
import GenerateBaseCommand
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import json
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/streamingoutputarg.py b/awscli/customizations/streamingoutputarg.py
|
|
|
adca06 |
--- a/awscli/customizations/streamingoutputarg.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/streamingoutputarg.py 2018-01-26 13:07:00.862639809 +0100
|
|
|
adca06 |
@@ -10,6 +10,8 @@
|
|
|
adca06 |
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
|
adca06 |
# ANY KIND, either express or implied. See the License for the specific
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.model import Shape
|
|
|
adca06 |
|
|
|
adca06 |
from awscli.arguments import BaseCLIArgument
|
|
|
adca06 |
diff -uNr a/awscli/customizations/utils.py b/awscli/customizations/utils.py
|
|
|
adca06 |
--- a/awscli/customizations/utils.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/utils.py 2018-01-26 13:03:26.771661567 +0100
|
|
|
adca06 |
@@ -17,6 +17,7 @@
|
|
|
adca06 |
import copy
|
|
|
adca06 |
import sys
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.exceptions import ClientError
|
|
|
adca06 |
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/customizations/waiters.py b/awscli/customizations/waiters.py
|
|
|
adca06 |
--- a/awscli/customizations/waiters.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/customizations/waiters.py 2018-01-26 13:05:06.223722396 +0100
|
|
|
adca06 |
@@ -10,6 +10,8 @@
|
|
|
adca06 |
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
|
|
adca06 |
# ANY KIND, either express or implied. See the License for the specific
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore import xform_name
|
|
|
adca06 |
from botocore.exceptions import DataNotFoundError
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/formatter.py b/awscli/formatter.py
|
|
|
adca06 |
--- a/awscli/formatter.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/formatter.py 2018-01-26 13:10:13.129824143 +0100
|
|
|
adca06 |
@@ -12,6 +12,8 @@
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.compat import json
|
|
|
adca06 |
|
|
|
adca06 |
from botocore.utils import set_value_from_jmespath
|
|
|
adca06 |
diff -uNr a/awscli/help.py b/awscli/help.py
|
|
|
adca06 |
--- a/awscli/help.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/help.py 2018-01-26 13:02:53.873972235 +0100
|
|
|
adca06 |
@@ -20,6 +20,7 @@
|
|
|
adca06 |
from docutils.core import publish_string
|
|
|
adca06 |
from docutils.writers import manpage
|
|
|
adca06 |
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.docs.bcdoc import docevents
|
|
|
adca06 |
from botocore.docs.bcdoc.restdoc import ReSTDocument
|
|
|
adca06 |
from botocore.docs.bcdoc.textwriter import TextWriter
|
|
|
adca06 |
diff -uNr a/awscli/paramfile.py b/awscli/paramfile.py
|
|
|
adca06 |
--- a/awscli/paramfile.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/paramfile.py 2018-01-26 13:09:46.469075911 +0100
|
|
|
adca06 |
@@ -13,6 +13,8 @@
|
|
|
adca06 |
import logging
|
|
|
adca06 |
import os
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.vendored import requests
|
|
|
adca06 |
from awscli.compat import six
|
|
|
adca06 |
|
|
|
adca06 |
diff -uNr a/awscli/plugin.py b/awscli/plugin.py
|
|
|
adca06 |
--- a/awscli/plugin.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/plugin.py 2018-01-26 13:11:22.716167007 +0100
|
|
|
adca06 |
@@ -12,6 +12,8 @@
|
|
|
adca06 |
# language governing permissions and limitations under the License.
|
|
|
adca06 |
import logging
|
|
|
adca06 |
|
|
|
adca06 |
+import sys
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.hooks import HierarchicalEmitter
|
|
|
adca06 |
|
|
|
adca06 |
log = logging.getLogger('awscli.plugin')
|
|
|
adca06 |
diff -uNr a/awscli/testutils.py b/awscli/testutils.py
|
|
|
adca06 |
--- a/awscli/testutils.py 2018-01-18 02:06:58.000000000 +0100
|
|
|
adca06 |
+++ b/awscli/testutils.py 2018-01-26 13:09:52.192021868 +0100
|
|
|
adca06 |
@@ -47,6 +47,7 @@
|
|
|
adca06 |
# different story.
|
|
|
adca06 |
mock = None
|
|
|
adca06 |
from awscli.compat import six
|
|
|
adca06 |
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
|
|
|
adca06 |
from botocore.hooks import HierarchicalEmitter
|
|
|
adca06 |
from botocore.session import Session
|
|
|
adca06 |
from botocore.exceptions import ClientError
|