Created
November 9, 2020 03:37
-
-
Save tienthanh2509/47fe321905c3b6c19b8bea2e13f38611 to your computer and use it in GitHub Desktop.
Install newer nagios nrpe server on ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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