Files
ProxmoxVE/install/minarca-install.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

2025-06-08 22:14:41 +02:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 community-scripts ORG
# Author: Slaviša Arežina (tremor021)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://minarca.org/en_CA
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
$STD apt install -y \
2025-06-08 22:14:41 +02:00
apt-transport-https \
ca-certificates \
lsb-release
msg_ok "Installed Dependencies"
msg_info "Installing Minarca"
curl -fsSL https://www.ikus-soft.com/archive/minarca/public.key | gpg --dearmor >/usr/share/keyrings/minarca-keyring.gpg
cat <<EOF >/etc/apt/sources.list.d/minarca.sources
Types: deb
URIs: https://nexus.ikus-soft.com/repository/apt-release-$(lsb_release -sc)/
Suites: $(lsb_release -sc)
Components: main
Architectures: amd64
Signed-By: /usr/share/keyrings/minarca-keyring.gpg
EOF
$STD apt update
$STD apt install -y minarca-server
2025-06-08 22:14:41 +02:00
msg_ok "Installed Minarca"
motd_ssh
customize
msg_info "Cleaning up"
$STD apt -y autoremove
$STD apt -y autoclean
$STD apt -y clean
2025-06-08 22:14:41 +02:00
msg_ok "Cleaned"