Last active
August 29, 2017 16:15
-
-
Save vitkhab/275e5395d9ab8a72c124cc75d2e9b986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" > /etc/apt/sources.list.d/mongodb-org-3.4.list | |
echo "deb http://repo.pritunl.com/stable/apt xenial main" > /etc/apt/sources.list.d/pritunl.list | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 0C49F3730359A14518585931BC711F9BA15703C6 | |
apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 7568D9BB55FF9E5287D586017AE645C0CF8E292A | |
apt-get --assume-yes update | |
apt-get --assume-yes upgrade | |
apt-get --assume-yes install pritunl mongodb-org | |
systemctl start pritunl mongod | |
systemctl enable pritunl mongod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment