summaryrefslogtreecommitdiff
path: root/dnsutl.spec
blob: de2bab0f4604155bcbc77d6ba7067ea7eb9be670 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
Summary:	Collection of tools to make administering DNS easier
Summary(pl.UTF-8):	Zestaw narzędzi ułatwiających administrowanie DNS-em
Name:		dnsutl
Version:	1.11
Release:	1
License:	GPL v2
Group:		Applications
Source0:	http://dl.sourceforge.net/dnsutl/%{name}-%{version}.tar.gz
# Source0-md5:	6de57b9589e6210a64703af29a1522af
URL:		http://dnsutl.sourceforge.net/
BuildRequires:	bison
BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)

%define		_bindir	%{_prefix}/sbin

%description
The dnsutl package is a collection tools to make administering DNS
easier.

These include:
- dns-rev: Take the forward DNS mapping and generate the reverse
  mapping. This is useful for producing a self-consistent DNS
  configuration.
- dns-ethers: By using a bogus record type, you can keep the MAC
  address with the IP address, and generate the /etc/ethers file.
- dns-hosts: Take the forward DNS mapping and generate the /etc/hosts
  file.
- dns-bootp: Using the MAC and IP information, you can generate the
  /etc/bootptab file.
- dns-ng: Take the forward DNS mapping and generate the /etc/netgroup
  file.
- dns-bootparams: Using the MAC and IP information, you can generate
  the Sun /etc/bootparams file.
- dns-boot-check: Check your named(8) configuration for self-
  consistency.
- dns-hosts-import: Turn your /etc/hosts file into a DNS forward map,
  as a first step to configuring your DNS server.
- dns-dhcp: Using the MAC and IP information, you can generate the
  /etc/dhcp.conf file.

All of these programs are both faster than shell scripts, and more
robust when faced with all the peculiar semantics of DNS resource
files. They even understand the $include directive.

%description -l pl.UTF-8
Pakiet dnsutl to zestaw narzędzi ułatwiających administrowanie DNS-em.
Zawiera:
- dns-rev - generowanie odwrotnych odwzorowań DNS na podstawie
  prostych; przydatne do tworzenia samodzielnej konfiguracji DNS.
- dns-ethers - używając fałszywego rodzaju rekordu można przechowywać
  adresy MAC wraz z adresami IP i generować plik /etc/ethers.
- dns-hosts - pobieranie prostego odwzorowania DNS i generowanie pliku
  /etc/hosts.
- dns-bootp - generowanie pliku /etc/bootptab na podstawie informacji
  o adresach MAC i IP.
- dns-ng - pobieranie prostego odwzorowania DNS i generowanie pliku
  /etc/netgroup.
- dns-bootparams - przy użyciu informacji o adresach MAC i IP pozwala
  generować plik /etc/bootparams dla Suna.
- dns-boot-check - sprawdzanie konfiguracji serwera named(8) pod kątem
  samodzielności.
- dns-hosts-import - zamiana pliku /etc/hosts na odwzorowanie proste
  DNS jako pierwszy krok do konfiguracji serwera DNS.
- dns-dhcp - przy użyciu informacji o adresach MAC i IP pozwala
  generować plik /etc/dhcp.conf.

Wszystkie te programy są szybsze niż skrypty powłoki i przydatniejsze
w połączeniu ze szczególną semantyką plików zasobów DNS. Rozumieją
nawet dyrektywę $include.

%prep
%setup -q

%build
%configure
%{__make} -j1

%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
%{__make} install -j1 \
	DESTDIR=$RPM_BUILD_ROOT

%clean
rm -rf $RPM_BUILD_ROOT

%files
%defattr(644,root,root,755)
%doc README
%attr(755,root,root) %{_bindir}/dns-boot-check
%attr(755,root,root) %{_bindir}/dns-bootp
%attr(755,root,root) %{_bindir}/dns-bootparams
%attr(755,root,root) %{_bindir}/dns-dhcp
%attr(755,root,root) %{_bindir}/dns-ethers
%attr(755,root,root) %{_bindir}/dns-ethers-import
%attr(755,root,root) %{_bindir}/dns-filter
%attr(755,root,root) %{_bindir}/dns-hosts
%attr(755,root,root) %{_bindir}/dns-hosts-import
%attr(755,root,root) %{_bindir}/dns-ng
%attr(755,root,root) %{_bindir}/dns-rev
%{_mandir}/man1/dns-boot-check.1*
%{_mandir}/man1/dns-bootp.1*
%{_mandir}/man1/dns-bootparams.1*
%{_mandir}/man1/dns-dhcp.1*
%{_mandir}/man1/dns-ethers-import.1*
%{_mandir}/man1/dns-ethers.1*
%{_mandir}/man1/dns-filter.1*
%{_mandir}/man1/dns-hosts-import.1*
%{_mandir}/man1/dns-hosts.1*
%{_mandir}/man1/dns-license.1*
%{_mandir}/man1/dns-ng.1*
%{_mandir}/man1/dns-rev.1*