]> git.pld-linux.org Git - packages/fping.git/commitdiff
- initial version
authorPaweł Gołaszewski <blues@pld-linux.org>
Fri, 26 Oct 2001 19:32:46 +0000 (19:32 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
fping is different from ping in that you can specify any number of
hosts on the command line, or specify a file containing the lists of
hosts to ping. Instead of trying one host until it timeouts or
replies, fping will send out a ping packet and move on to the next
host in a round-robin fashion.

Changed files:
    fping.spec -> 1.1

fping.spec [new file with mode: 0644]

diff --git a/fping.spec b/fping.spec
new file mode 100644 (file)
index 0000000..16f183f
--- /dev/null
@@ -0,0 +1,50 @@
+Summary:       fping
+Summary(pl):   fping
+Name:          fping
+Version:       2.4b2
+Release:       1
+Group:         Networking/Admin
+Group(de):     Netzwerkwesen/Administration
+Group(pl):     Sieciowe/Administracyjne
+License:       GPL (?)
+Source0:       http://www.fping.com/download/%{name}-%{version}.tar.gz
+URL:           http://www.fping.com
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+fping is a ping(1) like program which uses the Internet Control
+Message Protocol (ICMP) echo request to determine if a host is up.
+fping is different from ping in that you can specify any number of
+hosts on the command line, or specify a file containing the lists of
+hosts to ping. Instead of trying one host until it timeouts or
+replies, fping will send out a ping packet and move on to the next
+host in a round-robin fashion. If a host replies, it is noted and
+removed from the list of hosts to check. If a host does not respond
+within a certain time limit and/or retry limit it will be considered
+unreachable.
+
+
+%prep
+%setup -q
+
+%build
+rm -f missing
+aclocal
+autoconf
+automake -a -c
+%configure
+
+%{__make} 
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} DESTDIR=$RPM_BUILD_ROOT install
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(4750,root,adm) %{_sbindir}/*
+%{_mandir}/man*/*
This page took 0.101325 seconds and 4 git commands to generate.