summaryrefslogtreecommitdiff
path: root/integration/scripts/files/elements/ubuntu-mongodb/pre-install.d/10-mongodb-apt-key
blob: 06aba97876967ed404325c0cb69dfa04a2472cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

set -e
set -o xtrace

[ -n "${RELEASE}" ] || die "RELEASE must be set to either trusty or xenial"

apt-get --allow-unauthenticated -y install software-properties-common python3-pip

get_key_robust EA312927

echo "deb http://repo.mongodb.org/apt/ubuntu "$(lsb_release -sc)"/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list

apt-get -y update