Changeset 1320
- Timestamp:
- 04/06/05 21:07:59 (4 years ago)
- Files:
-
- trunk/debian/changelog (modified) (1 diff)
- trunk/debian/control (modified) (1 diff)
- trunk/debian/po (added)
- trunk/debian/po/POTFILES.in (added)
- trunk/debian/po/fr.po (added)
- trunk/debian/po/templates.pot (added)
- trunk/debian/rules (modified) (3 diffs)
- trunk/debian/templates (modified) (1 diff)
- trunk/slavedns (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/debian/changelog
r1303 r1320 1 alternc-slavedns (0.9.3) testing; urgency=low 2 3 * Increased compatibility with debian sarge policy. 4 * Uses po-debconf (first test for other alternc packages) 5 6 -- Benjamin Sonntag <benjamin@alternc.org> Tue, 5 Apr 2005 13:50:00 +0200 7 1 8 alternc-slavedns (0.9.2-20041105) unstable; urgency=low 2 9 trunk/debian/control
r1293 r1320 3 3 Priority: optional 4 4 Maintainer: Benjamin Sonntag <benjamin@alternc.org> 5 Build-Depends: debhelper (> > 3.0.0)6 Standards-Version: 3. 5.25 Build-Depends: debhelper (>= 4.1.16) 6 Standards-Version: 3.6.1 7 7 8 8 Package: alternc-slavedns trunk/debian/rules
r1293 r1320 31 31 dh_testroot 32 32 rm -f build-stamp 33 33 debconf-updatepo 34 34 dh_clean 35 35 … … 45 45 # etc/alternc/* root.root 750 46 46 47 # Add here commands to install the package into debian/tmp.48 # conffiles47 # Add here commands to install the package into debian/tmp. 48 # conffiles 49 49 install -o root -g root -m0755 slavedns debian/alternc-slavedns/usr/sbin/ 50 50 install -o root -g root -m0644 slavedns.conf debian/alternc-slavedns/etc/slavedns/ … … 75 75 dh_installcron 76 76 # dh_installinfo 77 dh_undocumented78 77 # dh_installman 79 78 dh_strip trunk/debian/templates
r1293 r1320 1 1 Template: alternc-slavedns/info 2 2 Type: note 3 Description: Information 4 This DNS synchro script ask bind to be a dns slave for your remote 5 AlternC server. You must create one configuration file in /etc/slavedns 6 for each AlternC server you want to be the slave dns of. 7 Description-fr: Information 8 Ce script de synchro de DNS vous permet de demander à bind de servir de 9 DNS secondaire pour votre serveur alternc distant. Il vous faudra créer 10 un fichier de configuration dans /etc/slavedns/ pour chaque serveur 11 AlternC dont vous voudrez être l'esclave DNS. 3 _Description: Information 4 This DNS synchro script ask bind to be a dns slave for your remote AlternC 5 server. You must create one configuration file in /etc/slavedns for each 6 AlternC server you want to be the slave dns of. trunk/slavedns
r1319 r1320 9 9 WGETRC=${HOME}/.wgetrc 10 10 11 TIMEOUT=512 13 11 #NAMED9=/usr/pkg/etc/rc.d/named9 # BIND9 on NetBSD 14 12 #NAMED8=/etc/rc.d/named # BIND8 on NetBSD/FreeBSD/OpenBSD 15 NAMED8=/etc/init.d/named # BIND8 on some Linux16 NAMED9=/etc/init.d/named9 # BIND9 on some Linux17 #NAMED8=/etc/init.d/bind # BIND8 on other Linux18 #NAMED9=/etc/init.d/bind9 # BIND9 on other Linux13 #NAMED8=/etc/init.d/named # BIND8 on some Linux 14 #NAMED9=/etc/init.d/named9 # BIND9 on some Linux 15 NAMED8=/etc/init.d/bind # BIND8 on other Linux 16 NAMED9=/etc/init.d/bind9 # BIND9 on other Linux 19 17 18 TIMEOUT=5 20 19 NAMED="${NAMED8} ${NAMED9}" 21 20
