From 619acb7a3e0e2d33699a25cc0e5ffda78c4c4f8c Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Wed, 30 Aug 2017 00:52:07 -0700 Subject: add collectd ansible required DPDK fixes to enable building collectd with dpdkstats need /usr/lib/dpdk-pmd symlinks Compiling all this code requies more space than the default ubuntu cloud-image, so we need to resize the cloud image somehow Change-Id: Ib39fc94ba8101ca1aebc7d2a710be88b0338f7c3 Signed-off-by: Ross Brattain Signed-off-by: Maciej Skrocki --- ansible/filter_plugins/networks.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ansible/filter_plugins/networks.py') diff --git a/ansible/filter_plugins/networks.py b/ansible/filter_plugins/networks.py index a1573951f..d67615a53 100644 --- a/ansible/filter_plugins/networks.py +++ b/ansible/filter_plugins/networks.py @@ -13,7 +13,10 @@ # limitations under the License. -from urlparse import urlsplit +try: + from urlparse import urlsplit +except ImportError: + from urllib.parse import urlsplit def do_prefix_to_netmask(arg): -- cgit 1.2.3-korg