mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-15 22:00:06 -04:00
11 lines
263 B
Bash
Executable file
11 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xeu
|
|
|
|
temp=$(mktemp -d)
|
|
trap "cd $HOME; rm -rf $temp; exit 1" EXIT
|
|
curl -sS http://nagiosplug.sourceforge.net/snapshot/nagios-plugins-HEAD.tar.gz|tar -C "$temp" --strip-components=1 -xzf -
|
|
cd $temp
|
|
./configure && make
|
|
$HOME/bin/update_man_pages
|
|
|