From 2d45cff6e1c364e863cbbbe5cdf1509c0a717ff4 Mon Sep 17 00:00:00 2001 From: LuluGO Date: Wed, 19 Jun 2019 14:29:20 -0500 Subject: [PATCH] changed mongo version for snap from 3.2.7 to 3.4.20 (#14838) --- .snapcraft/resources/preparemongo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.snapcraft/resources/preparemongo b/.snapcraft/resources/preparemongo index 332dd7d46847..9cfe098409ec 100755 --- a/.snapcraft/resources/preparemongo +++ b/.snapcraft/resources/preparemongo @@ -2,8 +2,8 @@ if [[ $(uname -m) == "x86_64" ]] then - wget --backups=0 "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.2.7.tgz" - tar -zxf ./mongodb-linux-x86_64-ubuntu1604-3.2.7.tgz --strip-components=1 + wget --backups=0 "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.4.20.tgz" + tar -zxf ./mongodb-linux-x86_64-3.4.20.tgz --strip-components=1 else IFS=" " read -a links <<< $(apt-get -y --print-uris install mongodb | egrep -o "https?://[^']+") for link in ${links[@]}