PVE8.x Bash Install Script for DELL dcism & idracadm8
Read more
Bash:
#!/bin/bash
echo "DELL Server Tool install for PVE8.x"
while true; do
read -p "Do you want to proceed? (yes/no) " yn
case $yn in
yes )
curl -fsSL https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/dell-apt-key.gpg
clear
echo "
deb [signed-by=/etc/apt/trusted.gpg.d/dell-apt-key.gpg] http://linux.dell.com/repo/community/openmanage/11000/jammy jammy main
# For Proxmox 7
#deb...
Read more