]> git.pld-linux.org Git - packages/dnsutl.git/blob - dnsutl.spec
- new
[packages/dnsutl.git] / dnsutl.spec
1 Summary:        Collection of tools to make administering DNS easier
2 Name:           dnsutl
3 Version:        1.8
4 Release:        1
5 License:        GPL v2
6 Group:          Applications
7 Source0:        http://dl.sourceforge.net/dnsutl/%{name}-%{version}.tar.gz
8 # Source0-md5:  10f47572221b7376a07449ac0ff62fdc
9 URL:            http://dnsutl.sourceforge.net/
10 BuildRequires:  bison
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 The dnsutl package is a collection tools to make administering DNS
15 easier.
16
17 These include:
18 - dns-rev: Take the forward DNS mapping and generate the reverse
19   mapping. This is useful for producing a self-consistent DNS
20   configuration.
21 - dns-ethers: By using a bogus record type, you can keep the MAC
22   address with the IP address, and generate the /etc/ethers file.
23 - dns-hosts: Take the forward DNS mapping and generate the /etc/hosts
24   file.
25 - dns-bootp: Using the MAC and IP information, you can generate the
26   /etc/bootptab file.
27 - dns-ng: Take the forward DNS mapping and generate the /etc/netgroup
28   file.
29 - dns-bootparams: Using the MAC and IP information, you can generate
30   the Sun /etc/bootparams file.
31 - dns-boot-check: Check your named(8) configuration for self-
32   consistency.
33 - dns-hosts-import: Turn your /etc/hosts file into a DNS forward map,
34   as a first step to configuring your DNS server.
35 - dns-dhcp: Using the MAC and IP information, you can generate the
36   /etc/dhcp.conf file.
37
38 All of these programs are both faster than shell scripts, and more
39 robust when faced with all the peculiar semantics of DNS resource
40 files. They even understand the $include directive.
41
42 %prep
43 %setup -q
44
45 %build
46 %configure
47 %{__make} -j1
48
49 %install
50 rm -rf $RPM_BUILD_ROOT
51 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
52 %{__make} install -j1 \
53         DESTDIR=$RPM_BUILD_ROOT
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc README
61 %attr(755,root,root) %{_bindir}/dns-boot-check
62 %attr(755,root,root) %{_bindir}/dns-bootp
63 %attr(755,root,root) %{_bindir}/dns-bootparams
64 %attr(755,root,root) %{_bindir}/dns-dhcp
65 %attr(755,root,root) %{_bindir}/dns-ethers
66 %attr(755,root,root) %{_bindir}/dns-ethers-import
67 %attr(755,root,root) %{_bindir}/dns-filter
68 %attr(755,root,root) %{_bindir}/dns-hosts
69 %attr(755,root,root) %{_bindir}/dns-hosts-import
70 %attr(755,root,root) %{_bindir}/dns-ng
71 %attr(755,root,root) %{_bindir}/dns-rev
72 %{_mandir}/man1/dns-boot-check.1*
73 %{_mandir}/man1/dns-bootp.1*
74 %{_mandir}/man1/dns-bootparams.1*
75 %{_mandir}/man1/dns-dhcp.1*
76 %{_mandir}/man1/dns-ethers-import.1*
77 %{_mandir}/man1/dns-ethers.1*
78 %{_mandir}/man1/dns-filter.1*
79 %{_mandir}/man1/dns-hosts-import.1*
80 %{_mandir}/man1/dns-hosts.1*
81 %{_mandir}/man1/dns-license.1*
82 %{_mandir}/man1/dns-ng.1*
83 %{_mandir}/man1/dns-rev.1*
This page took 0.056161 seconds and 3 git commands to generate.