Skip to content

Instantly share code, notes, and snippets.

@TaylorBurnham
Created February 10, 2018 16:49
Show Gist options
  • Save TaylorBurnham/e05c7a35fc5328fec5109e7ff37f1ab0 to your computer and use it in GitHub Desktop.
Save TaylorBurnham/e05c7a35fc5328fec5109e7ff37f1ab0 to your computer and use it in GitHub Desktop.
#!/bin/bash
wget -O - https://packages.icinga.com/icinga.key | apt-key add -
DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release); \
echo "deb http://packages.icinga.com/debian icinga-${DIST} main" > \
/etc/apt/sources.list.d/${DIST}-icinga.list
echo "deb-src http://packages.icinga.com/debian icinga-${DIST} main" >> \
/etc/apt/sources.list.d/${DIST}-icinga.list
sudo apt-get install icinga2 -yy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment