Skip to content

Instantly share code, notes, and snippets.

@dark-vex
Forked from dubcl/hpe-disk-controller-tool.md
Last active October 6, 2025 15:20
Show Gist options
  • Select an option

  • Save dark-vex/33e3e3a05de224319d2c4cf78b27da77 to your computer and use it in GitHub Desktop.

Select an option

Save dark-vex/33e3e3a05de224319d2c4cf78b27da77 to your computer and use it in GitHub Desktop.
Add HPE Debian repo
#!/bin/bash

DISTRO="bookworm"

# download the GPG key of the repository:
wget -q0 - http://downloads.linux.hpe.com/SDR/repo/mcp/GPG-KEY-mcp | apt-key add -

# create apt sources file for HP/Proliant repo
echo -e "deb http://downloads.linux.hpe.com/SDR/repo/mcp/ $DISTRO/current non-free" > /etc/apt/sources.list.d/proliant.sources.list

# update apt & install hpacucli package
apt-get update && apt-get install ssacli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment