added unattended installs, and bumped golang ver
This commit is contained in:
19
scripts/unattended/mongodbinstall.sh
Normal file
19
scripts/unattended/mongodbinstall.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
trap 'exit 130' INT
|
||||
if [ ! -x /usr/bin/curl ] ; then
|
||||
CURL_NOT_EXIST=1
|
||||
apt install -y curl
|
||||
else
|
||||
CURL_NOT_EXIST=0
|
||||
fi
|
||||
sudo apt update && apt upgrade -y
|
||||
sudo apt install wget curl gnupg2 software-properties-common apt-transport-https ca-certificates lsb-release -y
|
||||
sudo curl -fsSL https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add -
|
||||
echo "deb http://security.ubuntu.com/ubuntu jammy-security main" | sudo tee /etc/apt/sources.list.d/jammy-security.list
|
||||
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/6.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-6.0.list
|
||||
sudo apt update -y
|
||||
sudo apt-get install libssl1.1 -y
|
||||
sudo apt install mongodb-org -y
|
||||
sudo systemctl start mongod
|
||||
sudo systemctl enable mongod
|
||||
apt autoremove -y
|
Reference in New Issue
Block a user