Skip to content

Instantly share code, notes, and snippets.

@tienthanh2509
Created November 9, 2020 03:37
Show Gist options
  • Save tienthanh2509/47fe321905c3b6c19b8bea2e13f38611 to your computer and use it in GitHub Desktop.
Save tienthanh2509/47fe321905c3b6c19b8bea2e13f38611 to your computer and use it in GitHub Desktop.
Install newer nagios nrpe server on ubuntu
#!/bin/bash
# Tested with bionic/focal
cd /tmp
# Try download latest pkg from launchpad
wget -o nagios-nrpe-server_4.0.3-1ubuntu1_amd64.deb https://launchpad.net/ubuntu/+source/nagios-nrpe/4.0.3-1ubuntu1/+build/19500268/+files/nagios-nrpe-server_4.0.3-1ubuntu1_amd64.deb
# Install it
dpkg -i nagios-nrpe-server_4.0.3-1ubuntu1_amd64.deb
systemctl restart nagios-nrpe-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment