348ffa
diff -uNr a/bundled/botocore/botocore/paginate.py b/bundled/botocore/botocore/paginate.py
348ffa
--- a/bundled/botocore/botocore/paginate.py	2018-01-26 00:00:58.000000000 +0100
348ffa
+++ b/bundled/botocore/botocore/paginate.py	2018-02-12 15:17:06.811746874 +0100
348ffa
@@ -15,6 +15,8 @@
348ffa
 
348ffa
 from botocore.compat import six
348ffa
 
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 import jmespath
348ffa
 import json
348ffa
 import base64
348ffa
diff -uNr a/bundled/botocore/botocore/waiter.py b/bundled/botocore/botocore/waiter.py
348ffa
--- a/bundled/botocore/botocore/waiter.py	2018-01-26 00:00:58.000000000 +0100
348ffa
+++ b/bundled/botocore/botocore/waiter.py	2018-02-12 15:17:23.455515958 +0100
348ffa
@@ -10,6 +10,8 @@
348ffa
 # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
348ffa
 # ANY KIND, either express or implied. See the License for the specific
348ffa
 # language governing permissions and limitations under the License.
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 import jmespath
348ffa
 import logging
348ffa
 import time
348ffa
diff -uNr a/s3transfer/compat.py b/s3transfer/compat.py
348ffa
--- a/s3transfer/compat.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/compat.py	2018-02-12 15:15:17.126268646 +0100
348ffa
@@ -16,6 +16,7 @@
348ffa
 import errno
348ffa
 import socket
348ffa
 
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from botocore.compat import six
348ffa
 
348ffa
 
348ffa
diff -uNr a/s3transfer/download.py b/s3transfer/download.py
348ffa
--- a/s3transfer/download.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/download.py	2018-02-12 15:15:17.127268632 +0100
348ffa
@@ -18,6 +18,8 @@
348ffa
 import heapq
348ffa
 
348ffa
 
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from botocore.compat import six
348ffa
 from botocore.exceptions import IncompleteReadError
348ffa
 from botocore.vendored.requests.packages.urllib3.exceptions import \
348ffa
diff -uNr a/s3transfer/exceptions.py b/s3transfer/exceptions.py
348ffa
--- a/s3transfer/exceptions.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/exceptions.py	2018-02-12 15:15:17.128268618 +0100
348ffa
@@ -10,6 +10,8 @@
348ffa
 # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
348ffa
 # ANY KIND, either express or implied. See the License for the specific
348ffa
 # language governing permissions and limitations under the License.
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from concurrent.futures import CancelledError
348ffa
 
348ffa
 
348ffa
diff -uNr a/s3transfer/futures.py b/s3transfer/futures.py
348ffa
--- a/s3transfer/futures.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/futures.py	2018-02-12 15:15:17.128268618 +0100
348ffa
@@ -10,11 +10,12 @@
348ffa
 # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
348ffa
 # ANY KIND, either express or implied. See the License for the specific
348ffa
 # language governing permissions and limitations under the License.
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from concurrent import futures
348ffa
 from collections import namedtuple
348ffa
 import copy
348ffa
 import logging
348ffa
-import sys
348ffa
 import threading
348ffa
 
348ffa
 from s3transfer.compat import MAXINT
348ffa
diff -uNr a/s3transfer/__init__.py b/s3transfer/__init__.py
348ffa
--- a/s3transfer/__init__.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/__init__.py	2018-02-12 15:15:17.128268618 +0100
348ffa
@@ -131,6 +131,8 @@
348ffa
 import threading
348ffa
 import random
348ffa
 import string
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 import concurrent.futures
348ffa
 
348ffa
 from botocore.compat import six
348ffa
diff -uNr a/s3transfer/subscribers.py b/s3transfer/subscribers.py
348ffa
--- a/s3transfer/subscribers.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/subscribers.py	2018-02-12 15:15:17.129268604 +0100
348ffa
@@ -10,6 +10,8 @@
348ffa
 # distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
348ffa
 # ANY KIND, either express or implied. See the License for the specific
348ffa
 # language governing permissions and limitations under the License.
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from botocore.compat import six
348ffa
 
348ffa
 from s3transfer.compat import accepts_kwargs
348ffa
diff -uNr a/s3transfer/upload.py b/s3transfer/upload.py
348ffa
--- a/s3transfer/upload.py	2016-12-16 00:54:07.000000000 +0100
348ffa
+++ b/s3transfer/upload.py	2018-02-12 15:15:17.129268604 +0100
348ffa
@@ -12,6 +12,8 @@
348ffa
 # language governing permissions and limitations under the License.
348ffa
 import math
348ffa
 
348ffa
+import sys
348ffa
+sys.path.insert(0, '/usr/lib/fence-agents/bundled')
348ffa
 from botocore.compat import six
348ffa
 
348ffa
 from s3transfer.compat import seekable, readable