Skip to content

Commit df56af9

Browse files
committed
Add script for installing fping from sources
This is needed on some platforms where fping is not available as a package Signed-off-by: Samuli Seppänen <[email protected]>
1 parent 8b0b5a7 commit df56af9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

install-fping.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
3+
VERSION="4.0"
4+
BASENAME="fping-$VERSION"
5+
TARBALL="$BASENAME.tar.gz"
6+
7+
curl -O http://fping.org/dist/$TARBALL
8+
tar -zxf $TARBALL
9+
cd $BASENAME
10+
./configure && make && make install

0 commit comments

Comments
 (0)