2023-03-23 01:48:20 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2024-01-01 18:13:05 +01:00
|
|
|
# Copyright (c) 2021-2024 tteck
|
2023-03-23 01:48:20 +01:00
|
|
|
# Author: tteck (tteckster)
|
|
|
|
# License: MIT
|
|
|
|
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
|
|
|
|
|
|
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
|
|
|
color
|
|
|
|
verb_ip6
|
|
|
|
catch_errors
|
|
|
|
setting_up_container
|
|
|
|
network_check
|
|
|
|
update_os
|
|
|
|
|
|
|
|
msg_info "Installing Dependencies"
|
|
|
|
$STD apt-get install -y curl
|
|
|
|
$STD apt-get install -y sudo
|
|
|
|
$STD apt-get install -y mc
|
2023-05-07 16:39:56 +02:00
|
|
|
$STD apt-get install -y apt-transport-https
|
2023-11-26 13:30:19 +01:00
|
|
|
$STD apt-get install -y gnupg
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
2024-03-20 03:08:01 +01:00
|
|
|
msg_info "Installing Eclipse Temurin JRE"
|
2023-11-26 13:43:37 +01:00
|
|
|
wget -qO- https://packages.adoptium.net/artifactory/api/gpg/key/public | gpg --dearmor >/etc/apt/trusted.gpg.d/adoptium.gpg
|
2024-03-20 03:08:01 +01:00
|
|
|
echo "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/adoptium.gpg] https://packages.adoptium.net/artifactory/deb bookworm main" >/etc/apt/sources.list.d/adoptium.list
|
2023-11-26 13:30:19 +01:00
|
|
|
$STD apt-get update
|
2024-02-11 15:23:03 +01:00
|
|
|
$STD apt-get install -y temurin-17-jre
|
2024-03-20 03:08:01 +01:00
|
|
|
msg_ok "Installed Eclipse Temurin JRE"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
2023-05-07 16:39:56 +02:00
|
|
|
msg_info "Installing MongoDB"
|
2024-03-20 03:08:01 +01:00
|
|
|
wget -qO- https://www.mongodb.org/static/pgp/server-7.0.asc | gpg --dearmor >/usr/share/keyrings/mongodb-server-7.0.gpg
|
|
|
|
echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] http://repo.mongodb.org/apt/debian bookworm/mongodb-org/7.0 main" >/etc/apt/sources.list.d/mongodb-org-7.0.list
|
2023-11-26 13:30:19 +01:00
|
|
|
$STD apt-get update
|
|
|
|
$STD apt-get install -y mongodb-org
|
2023-05-07 16:39:56 +02:00
|
|
|
msg_ok "Installed MongoDB"
|
|
|
|
|
2024-03-20 19:55:27 +01:00
|
|
|
msg_info "Installing UniFi Network Server"
|
2023-05-07 16:39:56 +02:00
|
|
|
wget -qO /etc/apt/trusted.gpg.d/unifi-repo.gpg https://dl.ui.com/unifi/unifi-repo.gpg
|
2024-03-20 03:08:01 +01:00
|
|
|
echo "deb [ arch=amd64 signed-by=/etc/apt/trusted.gpg.d/unifi-repo.gpg] https://www.ui.com/downloads/unifi/debian stable ubiquiti" >/etc/apt/sources.list.d/100-ubnt-unifi.list
|
2023-05-07 16:39:56 +02:00
|
|
|
$STD apt-get update
|
|
|
|
$STD apt-get install -y unifi
|
2024-03-20 19:55:27 +01:00
|
|
|
msg_ok "Installed UniFi Network Server"
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
motd_ssh
|
2023-05-15 13:39:30 +02:00
|
|
|
customize
|
2023-03-23 01:48:20 +01:00
|
|
|
|
|
|
|
msg_info "Cleaning up"
|
|
|
|
$STD apt-get autoremove
|
|
|
|
$STD apt-get autoclean
|
|
|
|
msg_ok "Cleaned"
|