ProxmoxVE/install/proxmox-datacenter-manager-install.sh

39 lines
1.0 KiB
Bash
Raw Normal View History

2024-12-20 18:05:09 +00:00
#!/usr/bin/env bash
# Copyright (c) 2021-2024 community-scripts ORG
# Author: CrazyWolf13
# License: MIT
2024-12-20 19:49:20 +00:00
# Source: Proxmox Server Solution GmbH
2024-12-20 18:05:09 +00:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
2024-12-20 18:25:02 +00:00
$STD apt-get install -y \
curl \
2024-12-20 18:05:09 +00:00
sudo \
2024-12-20 19:49:20 +00:00
gpg \
2024-12-20 18:05:09 +00:00
mc
msg_ok "Installed Dependencies"
2024-12-20 19:49:20 +00:00
msg_info "Installing Proxmox Datacenter Manager"
curl -fsSL https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg | gpg --dearmor -o /etc/apt/keyrings/proxmox-release-bookworm.gpg
echo "deb [signed-by=/etc/apt/keyrings/proxmox-release-bookworm.gpg] http://download.proxmox.com/debian/pdm bookworm pdm-test " >/etc/apt/sources.list.d/proxmox-release-bookworm.list
2024-12-20 18:05:09 +00:00
$STD apt-get update
2024-12-20 18:25:02 +00:00
$STD apt-get install -y \
proxmox-datacenter-manager \
2024-12-20 18:05:09 +00:00
proxmox-datacenter-manager-ui
2024-12-20 19:49:20 +00:00
msg_ok "Installed Proxmox Datacenter Manager"
2024-12-20 18:05:09 +00:00
motd_ssh
customize
msg_info "Cleaning up"
$STD apt-get -y autoremove
$STD apt-get -y autoclean
msg_ok "Cleaned"