caching-nameserver-vl.spec 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. Summary: The configuration files for setting up a caching name server.
  2. Summary(ja): キャッシュネームサーバ用の設定ファイル
  3. Name: caching-nameserver
  4. Version: 7.1
  5. Release: 4%{?_dist_release}
  6. License: Public Domain
  7. Group: System Environment/Daemons
  8. Source0: ftp://ftp.internic.com/domain/named.root
  9. Source2: named.local
  10. Source3: named.conf
  11. Source4: Copyright.caching-nameserver
  12. Source5: localhost.zone
  13. Requires: bind
  14. Prereq: bind textutils grep
  15. BuildRoot: %{_tmppath}/caching-nameserver-root
  16. BuildArch: noarch
  17. %description
  18. The caching-nameserver package includes the configuration files which
  19. will make BIND, the DNS name server, act as a simple caching nameserver.
  20. Many users on dialup connections use this package along with BIND for
  21. such a purpose.
  22. If you would like to set up a caching name server, you'll need to install
  23. the caching-nameserver package; you'll also need to install bind.
  24. %description -l ja
  25. caching-nameserver パッケージは BIND (DNS ネームサーバ) をシンプルな
  26. キャッシュサーバとして動作させるための設定ファイルを含んでいます。
  27. ダイアルアップで接続している多くのユーザーは、上記のような目的でこの
  28. パッケージを BIND と一緒に使用しています。
  29. もしあなたがキャッシュネームサーバを利用したい場合は、このパッケージを
  30. インストールする必要があります。また BIND も一緒にインストールする必要
  31. があります。
  32. %prep
  33. %setup -c -T
  34. %install
  35. rm -rf $RPM_BUILD_ROOT
  36. mkdir -p $RPM_BUILD_ROOT/{etc,var/named}
  37. install -m 644 %{SOURCE0} $RPM_BUILD_ROOT/var/named/named.ca
  38. install -m 644 %{SOURCE2} $RPM_BUILD_ROOT/var/named/named.local
  39. install -m 644 %{SOURCE5} $RPM_BUILD_ROOT/var/named/localhost.zone
  40. install -m 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/named.conf
  41. install -m 644 %{SOURCE4} ./Copyright
  42. %clean
  43. rm -rf $RPM_BUILD_ROOT
  44. %post
  45. if ! grep ^nameserver /etc/resolv.conf >/dev/null 2>&1 ; then
  46. echo "nameserver 127.0.0.1" >> /etc/resolv.conf
  47. fi
  48. if ! grep -q "^key" /etc/named.conf; then
  49. if [ -f /etc/rndc.conf ]; then
  50. KEY=`cat /etc/rndc.conf |grep secret |head -n1`
  51. if [ -n "$KEY" ]; then
  52. cat >>/etc/named.conf <<EOF
  53. key "key" {
  54. algorithm hmac-md5;
  55. $KEY
  56. };
  57. EOF
  58. fi
  59. fi
  60. fi
  61. %files
  62. %defattr(-,root,root)
  63. %config(noreplace) /etc/named.conf
  64. %defattr(-,named,named)
  65. %config /var/named/named.ca
  66. %config /var/named/named.local
  67. %config /var/named/localhost.zone
  68. %defattr(-,root,root)
  69. %doc Copyright
  70. %changelog
  71. * Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 7.1-4vl5
  72. - applied new versioning policy, spec in utf-8
  73. * Mon Nov 26 2007 IWAI, Masaharu <iwai@alib.jp> 7.1-3vl8
  74. - update named.root (Source0) for changing the L.ROOTSERVERS.NET's IP Address.
  75. * Mon Jul 16 2007 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 7.1-3vl7
  76. - rebuild with new toolchains and environment.
  77. - s/Copyright/License/
  78. - add japanese description and summary.
  79. * Sun Jul 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 7.1-3vl6
  80. - rebuilt
  81. * Fri Feb 13 2004 Kunio Murasawa <murasawa@fa2.so-net.ne.jp> 7.1-3vl5
  82. - update named.root (zone serial # 2004012900)
  83. * Thu Nov 14 2002 Kunio Murasawa <murasawa@fa2.so-net.ne.jp> 7.1-3vl4
  84. - update named.root (zone serial # 2002110501) from internic
  85. * Thu Nov 14 2002 IWAI Masaharu <iwai@alib.jp> 7.1-3vl3
  86. - update named.root (Source0) for changing the J.ROOTSERVERS.NET's IP Address.
  87. * Wed Jun 6 2001 Jun Nishii <jun@vinelinux.org>
  88. - 7.1-3vl2
  89. - check the existence of rndc.conf in %post script
  90. * Thu May 31 2001 Jun Nishii <jun@vinelinux.org>
  91. - 7.1-3vl1
  92. - build for VineSeed
  93. * Tue Mar 13 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  94. - Remove extra ";" (#31382)
  95. * Thu Mar 1 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  96. - Don't add key { } stuff if it's already there
  97. (e.g. update from beta to final)
  98. * Tue Feb 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
  99. - Add key { } stuff to named.conf so rndc works out of the box
  100. * Mon Feb 12 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  101. - change to noreplace configs in /etc #21651
  102. * Tue Aug 8 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  103. - docu owned by root now
  104. * Mon Aug 7 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  105. - add default TTL to shut up warning message
  106. - add "localhost" zone
  107. * Sun Aug 6 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  108. - changing /var/named/* to root was silly - reverted
  109. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  110. - automatic rebuild
  111. * Mon Jul 3 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  112. - change ownerships back to root:root. normally nobody should
  113. need to change these files and they never have to be updated
  114. by the named server himself.
  115. * Tue Jun 27 2000 Nalin Dahyabhai <nalin@redhat.com>
  116. - rebuild in new environment
  117. * Tue Apr 18 2000 Nalin Dahyabhai <nalin@redhat.com>
  118. - change ownerships to named.named
  119. * Thu Feb 03 2000 Cristian Gafton <gafton@redhat.com>
  120. - if there are no nameserver lines in /etc/resolv.conf, add one
  121. - add a Copyright file
  122. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  123. - auto rebuild in the new build environment (release 2)
  124. * Wed Jan 06 1999 Cristian Gafton <gafton@redhat.com>
  125. - rebuilt for the 6.0
  126. * Wed Aug 12 1998 Jeff Johnson <jbj@redhat.com>
  127. - install bind-8.1.2 named.conf
  128. * Mon May 04 1998 Donnie Barnes <djb@redhat.com>
  129. - upgraded from 1.1 to 5.1 to make caching-nameserver version the same
  130. as the version of Red Hat that it runs on.
  131. - updated named.root
  132. * Wed Oct 15 1997 Donnie Barnes <djb@redhat.com>
  133. - updated named.root to latest
  134. - updated copyright
  135. * Tue Sep 23 1997 Erik Troan <ewt@redhat.com>
  136. - made a noarch package