-
Notifications
You must be signed in to change notification settings - Fork 1
/
lbd.spec
49 lines (31 loc) · 1.01 KB
/
lbd.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Name: lbd
Version: 0.1
Release: 2%{?dist}
Summary: DNS/HTTP load balancing detector
Group: Applications/Internet
License: GPLv2
URL: http://ge.mine.nu/lbd.html
Source0: http://ge.mine.nu/code/lbd
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
Requires: bind-utils
Requires: nc
%description
lbd (load balancing detector) detects if a given domain uses DNS and/or HTTP
Load-Balancing (via Server: and Date: header and diffs between server answers)
%prep
%build
%install
rm -rf %{buildroot}
install -d %{buildroot}%{_bindir}
install -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_bindir}/lbd
%changelog
* Sat Mar 13 2010 Nikolay Ulyanitsky <lystor AT lystor.org.ua> - 0.1-2
- Replace generally useful macros by regular commands
* Tue Feb 02 2010 Nikolay Ulyanitsky <lystor AT lystor.org.ua> - 0.1-1
- Initial package build