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
|
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
|
|
msg_info "Installing ASP.NET Core Runtime"
|
2023-11-30 05:35:56 +01:00
|
|
|
wget -q https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
|
2023-03-23 01:48:20 +01:00
|
|
|
$STD dpkg -i packages-microsoft-prod.deb
|
|
|
|
rm -rf packages-microsoft-prod.deb
|
|
|
|
$STD apt-get update
|
2024-02-05 13:26:30 +01:00
|
|
|
$STD apt-get install -y aspnetcore-runtime-8.0
|
2023-03-23 01:48:20 +01:00
|
|
|
msg_ok "Installed ASP.NET Core Runtime"
|
|
|
|
|
|
|
|
msg_info "Installing Technitium DNS"
|
|
|
|
$STD bash <(curl -fsSL https://download.technitium.com/dns/install.sh)
|
|
|
|
msg_ok "Installed Technitium DNS"
|
|
|
|
|
|
|
|
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"
|