--- tftp-hpa-0.48.orig/debian/tftpd-hpa.postinst +++ tftp-hpa-0.48/debian/tftpd-hpa.postinst @@ -0,0 +1,58 @@ +#! /bin/sh +# postinst script for tftp-hpa +# +# see: dh_installdeb(1) + +set -e + +. /usr/share/debconf/confmodule + +if [ -n "$2" -a "$2" != "" ] && dpkg --compare-versions "$2" lt "0.36-1"; then + db_set tftpd-hpa/use_inetd true ||true +fi + +db_get tftpd-hpa/use_inetd ||true +if [ "$RET" ]; then + if [ "$RET" = "true" ]; then + USE_INETD=true + else + USE_INETD=false + fi +else + USE_INETD=true +fi + +case "$1" in + configure) + if [ ! -n "$2" -a "$USE_INETD" = "true" ]; then + update-inetd --group BOOT --add "tftp dgram udp wait root /usr/sbin/in.tftpd /usr/sbin/in.tftpd -s /var/lib/tftpboot" + fi + if [ "$USE_INETD" = "false" ]; then + update-inetd --disable tftp + fi + + # Remove shutdown and reboot links; this init script does not need them. + if dpkg --compare-versions "$2" lt "0.42-1ubuntu2"; then + rm -f /etc/rc0.d/K20tftpd-hpa /etc/rc6.d/K20tftpd-hpa + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# +db_stop; + +exit 0 + + --- tftp-hpa-0.48.orig/debian/rules +++ tftp-hpa-0.48/debian/rules @@ -0,0 +1,72 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 by Joey Hess. +# +# This version is for a hypothetical package that builds an +# architecture-dependant package, as well as an architecture-independent +# package. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +configure: configure-stamp +configure-stamp: + dh_testdir + ./configure --without-readline --prefix=/usr --mandir=\$${prefix}/share/man + + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) distclean + + dh_clean + +install: DH_OPTIONS= +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tftp-hpa. + $(MAKE) install INSTALLROOT=$(CURDIR)/debian/tmp/ + dh_movefiles + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdebconf -a + dh_installdocs -a +# dh_installlogrotate -a + dh_installinit -a -- start 20 2 3 4 5 . stop 20 1 . + dh_installchangelogs CHANGES -a + dh_strip -a + dh_link -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary binary-indep binary-arch install configure --- tftp-hpa-0.48.orig/debian/tftpd-hpa.init +++ tftp-hpa-0.48/debian/tftpd-hpa.init @@ -0,0 +1,101 @@ +#! /bin/sh +# +# Author: Jaakko Niemi +# Modified from skeleton file in sarge + +### BEGIN INIT INFO +# Provides: tftp-hpa +# Required-Start: $local_fs $remote_fs $syslog $network +# Required-Stop: $local_fs $remote_fs $syslog $network +# Default-Start: 2 3 4 5 +# Default-Stop: 1 +# Short-Description: HPA's tftp client +# Description: tftp server to allow booting clients which support +# the PXE protocol. +### END INIT INFO + +set -e + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DESC="HPA's tftpd" +NAME=in.tftpd +DAEMON=/usr/sbin/$NAME +PIDFILE=/var/run/$NAME.pid +SCRIPTNAME=/etc/init.d/tftpd-hpa + +# Gracefully exit if the package has been removed. +test -x $DAEMON || exit 0 + +# Read config file if it is present. +if [ -r /etc/default/tftpd-hpa ] +then + . /etc/default/tftpd-hpa +fi + +test "$RUN_DAEMON" = "yes" || exit 0 + +# +# Function that starts the daemon/service. +# +d_start() { + start-stop-daemon --start --quiet --oknodo --exec $DAEMON -- $OPTIONS +} + +# +# Function that stops the daemon/service. +# +d_stop() { + start-stop-daemon --stop --quiet --oknodo --name $NAME +} + +# +# Function that sends a SIGHUP to the daemon/service. +# +d_reload() { + start-stop-daemon --stop --quiet --oknodo --name $NAME --signal 1 +} + +case "$1" in + start) + echo -n "Starting $DESC: $NAME" + d_start + echo "." + ;; + stop) + echo -n "Stopping $DESC: $NAME" + d_stop + echo "." + ;; + #reload) + # + # If the daemon can reload its configuration without + # restarting (for example, when it is sent a SIGHUP), + # then implement that here. + # + # If the daemon responds to changes in its config file + # directly anyway, make this an "exit 0". + # + # echo -n "Reloading $DESC configuration..." + # d_reload + # echo "done." + #;; + restart|force-reload) + # + # If the "reload" option is implemented, move the "force-reload" + # option to the "reload" entry above. If not, "force-reload" is + # just the same as "restart". + # + echo -n "Restarting $DESC: $NAME" + d_stop + sleep 1 + d_start + echo "." + ;; + *) + # echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 --- tftp-hpa-0.48.orig/debian/changelog +++ tftp-hpa-0.48/debian/changelog @@ -0,0 +1,287 @@ +tftp-hpa (0.48-2.2ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable. Remaining Ubuntu changes: + - tftpd-hpa.postinst: remove stop links from rc0 and rc6 + - tftpd-hpa.init: don't warn if init script is disabled + * Drop the usage of deprecated "multiuser", instead call update-rc.d with + manual arguments (LP: #254272). + + -- Devid Filoni Sat, 12 Jul 2008 17:00:25 +0200 + +tftp-hpa (0.48-2.2) unstable; urgency=high + + * Non-maintainer upload. + * Fix previous NMU for Conflict with aftpd (Closes: #476456). + * Add Galician Debconf translation (Closes: 481674). Thanks to Jacobo + Tarrio. + * Update Standards-Version. + + -- Steve McIntyre <93sam@debian.org> Sun, 29 Jun 2008 17:14:31 +0100 + +tftp-hpa (0.48-2.1) unstable; urgency=high + + * Non-maintainer upload. + * Add missing Conflict with aftpd (Closes: #476456). + + -- Pierre Habouzit Thu, 05 Jun 2008 10:37:05 +0200 + +tftp-hpa (0.48-2ubuntu1) intrepid; urgency=low + + * Merge from debian unstable, remaining changes: + - remove stop links from rc0 and rc6 + - don't warn if init script is disabled + + -- Michael Vogt Thu, 29 May 2008 10:46:20 +0200 + +tftp-hpa (0.48-2) unstable; urgency=low + + * Only Recommend inet-superserver (Thanks, Daniel (Closes: #462654) + * Add missing dependencies (Thanks, Michael) (Closes: #452536) + * Remove unnecessary Provides (Closes: #455262) + + -- Jaakko Niemi Sat, 15 Mar 2008 19:34:07 +0200 + +tftp-hpa (0.48-1ubuntu1) hardy; urgency=low + + * Merge from debian unstable, remaining changes: + - add update-inetd, sysv-rc to depends. + - remove stop links from rc0 and rc6 + - don't warn if init script is disabled + + -- Michael Vogt Fri, 23 Nov 2007 14:51:49 +0100 + +tftp-hpa (0.48-1) unstable; urgency=low + + * New upstream release + * added --oknodo to initscripts (Closes: #433891, #415845) + * depend on inet-superserver instead of netbase (Closes: #438163) + * Debconf translations: + - Dutch. (Closes: #414754, #449412) + - Spanish. (Closes: #433925) + + -- Jaakko Niemi Tue, 20 Nov 2007 22:40:51 +0200 + +tftp-hpa (0.43-1.1ubuntu1) gutsy; urgency=low + + * Merge from debian unstable, remaining changes: + - add update-inetd, sysv-rc to depends. + - remove stop links from rc0 and rc6 + - don't warn if init script disabled + + -- Michael Vogt Fri, 25 May 2007 11:34:51 +0200 + +tftp-hpa (0.43-1.1) unstable; urgency=low + + * Non-maintainer upload to fix pending l10n issues. + * Debconf translations: + - German. Closes: #400053 + - Catalan. Closes: #410217 + - Brazilian Portuguese. Closes: #403560 + * Provide a crude LSB header to the init script + + -- Christian Perrier Sat, 24 Feb 2007 07:47:29 +0100 + +tftp-hpa (0.43-1ubuntu2) feisty; urgency=low + + * Add update-inetd to depends. + + -- Tollef Fog Heen Thu, 14 Dec 2006 11:20:55 +0100 + +tftp-hpa (0.43-1ubuntu1) feisty; urgency=low + + * Merge from debian unstable, remaining changes: + - remove stop links from rc0 and rc6 + - don't warn if init script disabled + + -- Scott James Remnant Tue, 28 Nov 2006 15:29:41 +0000 + +tftp-hpa (0.43-1) unstable; urgency=low + + * New upstream release + * Add binary-indep target to debian/rules (Closes: #395753) + + -- Jaakko Niemi Sat, 28 Oct 2006 14:42:52 +0300 + +tftp-hpa (0.42-1ubuntu2) edgy; urgency=low + + * Remove stop script symlinks from rc0 and rc6. + + -- Scott James Remnant Mon, 18 Sep 2006 16:32:53 +0100 + +tftp-hpa (0.42-1ubuntu1) edgy; urgency=low + + * Merge from debian unstable. + + -- Fabio M. Di Nitto Tue, 04 Jul 2006 11:11:20 +0200 + +tftp-hpa (0.42-1) unstable; urgency=low + + * New upstream release + * Fixes pmtu issues, differently than in patches (Closes: #294882, #316616) + * Fixes regexp issue, differently than in patch (Closes: #316038) + * Ack NMUs: (Closes: #308688, #350649, #332116, #298748, #307006, #322296, #331595, #335952) + * Check and bump debhelper compat level + * Check and bump policy version + + -- Jaakko Niemi Sun, 19 Mar 2006 00:51:20 +0200 + +tftp-hpa (0.40-4.2) unstable; urgency=high + + * Non-maintainer upload. + * Update readline build-dep to libreadline5-dev (Closes: #350649). + * Added Vietnamese debconf translation (Closes: #322296). + * Added Swedish debconf translation (Closes: #331595). + * Added Portuguese debconf translation (Closes: #335952). + * Add debconf-2.0 alternative (Closes: #332116). + + -- Luk Claes Wed, 15 Feb 2006 12:18:32 +0100 + +tftp-hpa (0.40-4.1ubuntu1) dapper; urgency=low + + * Resynchronise with Debian (2 bits left): + - init script to be silent when running from inetd. + - kill Build-Deps to libreadline4-dev since it's not used. + + -- Fabio M. Di Nitto Thu, 24 Nov 2005 09:23:13 +0100 + +tftp-hpa (0.40-4.1) unstable; urgency=high + + * NMU + * Added netbase to Depends: (closes: #308688) + * Update Czech debconf translation (closes: #298748) + * Added Japanese debconf translation (closes: #307006) + + -- Kenshi Muto Sat, 14 May 2005 11:10:59 +0900 + +tftp-hpa (0.40-4) unstable; urgency=low + + * How many times can you screw up in a row? + * Fix initscript (Closes: #293040) + * Updated French translation (Closes: #292847) + * Added Czech debconf translations (Closes: #289285) + + -- Jaakko Niemi Fri, 4 Feb 2005 19:56:17 +0200 + +tftp-hpa (0.40-3) unstable; urgency=low + + * Fix and clean initscript (Closes: #279179, #279241) + * Document issue with XP1000 machines, bug #285134. + * Remove pidfile option from init script as in daemon + mode tftpd-hpa does not create it and forks. + + -- Jaakko Niemi Sat, 22 Jan 2005 17:05:35 +0200 + +tftp-hpa (0.40-2ubuntu2) breezy; urgency=low + + * Sync with Debian init script to make the daemon start and stop properly. + (From version 0.40-4.1) + + * Cosmetic: remove a trailing char from changelog that was making it's view + in some editors almost impossible. + + -- Fabio M. Di Nitto Tue, 20 Sep 2005 07:22:47 +0200 + +tftp-hpa (0.40-2ubuntu1) hoary; urgency=low + + * debian/tftpd-hpa.init: be silent if running from inetd rather than + init, and coincidentally fix operator precedence problems + + -- Matt Zimmerman Tue, 5 Apr 2005 14:07:56 -0700 + +tftp-hpa (0.40-2) unstable; urgency=low + + * Fixed typo in debconf template. Not running debconf‐updatepo as + translators propably don't have reproduced the typo. + * Lowered debconf prompt priority (closes: #276832) + * Made initscript to be more informative about daemon being disabled. + * Fixed postinst logic to enable default to running from inetd + if upgrading from older versions, and only disable from + inetd if ran as daemon. (closes: #276827, #276831) + + -- Jaakko Niemi Sun, 17 Oct 2004 01:12:49 +0300 + +tftp-hpa (0.40-1) unstable; urgency=low + + * New upstream release + * Add French translation (closes: #273990) + + -- Jaakko Niemi Thu, 14 Oct 2004 22:05:51 +0300 + +tftp-hpa (0.39-1) unstable; urgency=low + + * New upstream release + * add initscript and /etc/defaults/tftpd-hpa (closes: #237949) + + -- Jaakko Niemi Sun, 19 Sep 2004 12:49:56 +0300 + +tftp-hpa (0.36-1) unstable; urgency=low + + * New upstream release, enables remap and tcpwrappers + support (Closes: #205659) + * Correct server postinst to use correct path with + update-inetd, duh. (Closes: #229619) + + -- Jaakko Niemi Mon, 26 Jan 2004 20:11:31 +0200 + +tftp-hpa (0.34-2) unstable; urgency=low + + * really remove inetd line in package purge (Closes: #179867) + + -- Jaakko Niemi Sat, 10 Jan 2004 18:06:02 +0200 + +tftp-hpa (0.34-1) unstable; urgency=low + + * New maintainer (Closes: #136172) + * New upstream release, see changelog for details. + Has much improved error handling. + (Closes: #213379) + * Add correct line into inetd configuration (Closes: #150108) + * Update standards version, no changes needed + * User /var/lib/tftpboot untill FHS 2.3 gets into use + + -- Jaakko Niemi Sat, 10 Jan 2004 17:41:07 +0200 + +tftp-hpa (0.28-2.1) unstable; urgency=low + + * NMU + * Fix prerm-doesn't-understand-args bug. Closes: #136172 + + -- LaMont Jones Mon, 12 Aug 2002 13:33:59 -0600 + +tftp-hpa (0.28-2) unstable; urgency=low + + * Restore binary-arch in debian/rules, which I deleted with god + faith to clean up but out of ignorance (Closes: #135776) + * Reaslly close previously typo-ed bug (Closes: #130801) + * get rid of unneccersary bashism in tftpd-hpa.postinst (s/==/=/) + + -- Oliver M. Bolzer Tue, 26 Feb 2002 08:18:12 +0100 + +tftp-hpa (0.28-1) unstable; urgency=low + + * New Maintainer + * new upstream version (Closes: #13081) + * works in more PXE environments (like mine) + * supports tcpwrapper + * stays active for some time after invocation (performance improvement) + * adds standalone mode (no need for inetd) for busy servers + not the default for this package + * file-name remapping using regexps + * readline command-line editing in the client + (not enabled due to BSD adv.-caluse GPL conflict) + * decent manpage + + -- Oliver M. Bolzer Tue, 19 Feb 2002 10:44:19 +0100 + +tftp-hpa (0.14-2) unstable; urgency=low + + * Enable and disable tftp service on install and remove + + -- Wichert Akkerman Fri, 17 Nov 2000 14:13:36 +0000 + +tftp-hpa (0.14-1) unstable; urgency=low + + * Initial Debian release + + -- Wichert Akkerman Fri, 17 Nov 2000 10:41:09 +0000 + --- tftp-hpa-0.48.orig/debian/tftpd-hpa.docs +++ tftp-hpa-0.48/debian/tftpd-hpa.docs @@ -0,0 +1,2 @@ +README +README.security --- tftp-hpa-0.48.orig/debian/control +++ tftp-hpa-0.48/debian/control @@ -0,0 +1,28 @@ +Source: tftp-hpa +Section: net +Priority: extra +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Jaakko Niemi +Build-Depends: debhelper (>= 5.0.1), libreadline5-dev, libwrap0-dev +Standards-Version: 3.8.0.1 + +Package: tftp-hpa +Architecture: any +Depends: ${shlibs:Depends} +Conflicts: tftp +Description: HPA's tftp client + This is a tftp client derived from OpenBSD tftp with some + extra options added and bugs fixed. The source includes readline + support but it is not enabled due to licence conflicts between + the BSD advertising clause and the GPL. + +Package: tftpd-hpa +Architecture: any +Depends: ${shlibs:Depends}, debconf | debconf-2.0, sysv-rc (>= 2.86.ds1-14.1ubuntu2) +Recommends: inet-superserver, update-inetd +Conflicts: tftpd, atftpd +Description: HPA's tftp server + This is a tftp server derived from OpenBSD tftp with some + extra options added. It is useful if you want to use the + PXE protocol which has some non-standard requirements for + tftp. --- tftp-hpa-0.48.orig/debian/tftp-hpa.docs +++ tftp-hpa-0.48/debian/tftp-hpa.docs @@ -0,0 +1 @@ +README --- tftp-hpa-0.48.orig/debian/tftpd-hpa.templates +++ tftp-hpa-0.48/debian/tftpd-hpa.templates @@ -0,0 +1,7 @@ +Template: tftpd-hpa/use_inetd +Type: boolean +Default: true +_Description: Should the server be started by inetd? + tftpd-hpa can be started by the inetd superserver or as a daemon and + handle incoming connections by itself. The latter is only recommended + for very high usage servers. --- tftp-hpa-0.48.orig/debian/tftpd-hpa.files +++ tftp-hpa-0.48/debian/tftpd-hpa.files @@ -0,0 +1,3 @@ +/usr/sbin/in.tftpd +/usr/share/man/man8/in.tftpd.8 +/usr/share/man/man8/tftpd.8 --- tftp-hpa-0.48.orig/debian/tftpd-hpa.dirs +++ tftp-hpa-0.48/debian/tftpd-hpa.dirs @@ -0,0 +1 @@ +var/lib/tftpboot \ No newline at end of file --- tftp-hpa-0.48.orig/debian/README.Debian +++ tftp-hpa-0.48/debian/README.Debian @@ -0,0 +1,22 @@ +tftpd-hpa for Debian +==================== + +Packages >= 0.28-1 provide much better security than previous packages +due to upstream evolution. If you care about security, you should add +the -s flag to your /etc/inetd.conf file, so tftpd will not be able +to touch files outside this jail. It has not been set by default to +preserve compatibility with older packages. + +Note that you need to add -c to tftp line in inetd.conf, if you intend +to upload files that do not exist already on the server. + +For now we use /var/lib/tftpboot as the default directory. As FHS 2.3 +comes out this may change. + +With Compaq Professional Workstation XP1000 machines acting as clients +you might need to use "-r blksize" option to inhibit OACK being sent +out as they reply to regular TFTP port instead of the port where +OACK originated. This is SRM firmware bug on those machines. Many +thanks to Steffen Grunewald for tracking this down. + + -- Jaakko Niemi , Sat Jan 22 16:44:27 2005 --- tftp-hpa-0.48.orig/debian/tftpd-hpa.config +++ tftp-hpa-0.48/debian/tftpd-hpa.config @@ -0,0 +1,8 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule + +db_beginblock +db_input medium tftpd-hpa/use_inetd || true +db_endblock +db_go --- tftp-hpa-0.48.orig/debian/copyright +++ tftp-hpa-0.48/debian/copyright @@ -0,0 +1,39 @@ + +This is the Debian pacakged version of H. Peter Anvins tftp package. + +The source is available from: + ftp://ftp.kernel.org/pub/software/network/tftp/ + +The code has the following copyright (BSD with advertising clause): + + Copyright (c) 1983, 1993 + The Regents of the University of California. All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. All advertising materials mentioning features or use of this software + must display the following acknowledgement: + This product includes software developed by the University of + California, Berkeley and its contributors. + 4. Neither the name of the University nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + --- tftp-hpa-0.48.orig/debian/tftp-hpa.files +++ tftp-hpa-0.48/debian/tftp-hpa.files @@ -0,0 +1,2 @@ +/usr/bin/tftp +/usr/share/man/man1/tftp.1 --- tftp-hpa-0.48.orig/debian/tftpd-hpa.prerm +++ tftp-hpa-0.48/debian/tftpd-hpa.prerm @@ -0,0 +1,39 @@ +#! /bin/sh +# prerm script for tftp-hpa +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see /usr/share/doc/packaging-manual/ + +case "$1" in + remove|purge) + if command -v update-inetd >/dev/null 2>&1 ; then + update-inetd --remove tftp + fi + ;; + upgrade|failed-upgrade) + ;; + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- tftp-hpa-0.48.orig/debian/tftpd-hpa.default +++ tftp-hpa-0.48/debian/tftpd-hpa.default @@ -0,0 +1,3 @@ +#Defaults for tftpd-hpa +RUN_DAEMON="no" +OPTIONS="-l -s /var/lib/tftpboot" --- tftp-hpa-0.48.orig/debian/compat +++ tftp-hpa-0.48/debian/compat @@ -0,0 +1 @@ +5 --- tftp-hpa-0.48.orig/debian/po/pt_BR.po +++ tftp-hpa-0.48/debian/po/pt_BR.po @@ -0,0 +1,34 @@ +# tftp-hpa's Brazilian Portuguese debconf template translation. +# Copyright (C), 2006 André Lu[is Lopes +# This file is distributed under the same license as the tftp-hpa package. +# André Luís Lopes , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2006-12-17 21:46-0200\n" +"Last-Translator: André Luís Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "O servidor deverá ser iniciado pelo inetd ?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"O tftpd-hpa pode ser iniciado pelo superservidor inetd ou como um daemon e " +"gerenciar conexões entrantes por si próprio. O último método é recomendado " +"somente para servidores de uso bastante alto." --- tftp-hpa-0.48.orig/debian/po/templates.pot +++ tftp-hpa-0.48/debian/po/templates.pot @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" --- tftp-hpa-0.48.orig/debian/po/nl.po +++ tftp-hpa-0.48/debian/po/nl.po @@ -0,0 +1,35 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE 'S COPYRIGHT HOLDER +# This file is distributed under the same license as the package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2007-10-25 18:53+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Wilt u dat de server gestart wordt door inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftpd-hpa kan of gestart worden door de inetd-superserver, of als " +"achtergronddienst draaien en inkomende verbindingen zelf afhandelen. Voor " +"druk gebruikte servers is als achtergronddienst draaien de aangeraden keuze." --- tftp-hpa-0.48.orig/debian/po/es.po +++ tftp-hpa-0.48/debian/po/es.po @@ -0,0 +1,54 @@ +# tftp-hpa translation to spanish +# Copyright (C) 2007 Software in the Public Interest +# This file is distributed under the same license as the tftp-hpa package. +# +# Changes: +# - Initial translation +# Carlos Galisteo de Cabo , 2007 +# +# Traductores, si no conoce el formato PO, merece la pena leer la +# documentación de gettext, especialmente las secciones dedicadas a este +# formato, por ejemplo ejecutando: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Equipo de traducción al español, por favor lean antes de traducir +# los siguientes documentos: +# +# - El proyecto de traducción de Debian al español +# http://www.debian.org/intl/spanish/coordinacion +# especialmente las notas de traducción en +# http://www.debian.org/intl/spanish/notas +# +# - La guía de traducción de po's de debconf: +# /usr/share/doc/po-debconf/README-trans +# o http://www.debian.org/intl/l10n/po-debconf/README-trans +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa_0.43-1.1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2007-07-05 11:17+0200\n" +"Last-Translator: Carlos Galisteo \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "¿Debe iniciarse el servidor desde inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftpd-hpa puede iniciarse desde el superservidor inetd o como un servicio " +"que maneje las conexiones entrantes por sí mismo. Esto último sólo se " +"recomienda para servidores con niveles de uso muy altos." --- tftp-hpa-0.48.orig/debian/po/de.po +++ tftp-hpa-0.48/debian/po/de.po @@ -0,0 +1,35 @@ +# translation of po-debconf template to German +# Copyright (C) 2006, Matthias Julius +# This file is distributed under the same license as the tftp-hpa package. +# +# Matthias Julius , 2006. +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa 0.43-1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2006-11-23 12:00-0500\n" +"Last-Translator: Matthias Julius \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Soll der Server von inetd gestartet werden?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftp-hpa kann vom inetd-Superserver gestartet werden. Oder es kann als " +"Daemon laufen und ankommende Verbindungen selbst verwalten. Das letztere " +"wird nur für stark belastete Server empfohlen." --- tftp-hpa-0.48.orig/debian/po/POTFILES.in +++ tftp-hpa-0.48/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] tftpd-hpa.templates --- tftp-hpa-0.48.orig/debian/po/fr.po +++ tftp-hpa-0.48/debian/po/fr.po @@ -0,0 +1,42 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa 0.39\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2004-09-21 16:33+0100\n" +"Last-Translator: Clment Stenac \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Faut-il qu'inetd dmarre le serveur?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"Tftp-hpa peut tre dmarr soit par le serveur inetd, soit en tant que dmon " +"et grer lui-mme les connexions entrantes. Pour les serveurs soumis une " +"forte charge, la seconde solution est recommande." --- tftp-hpa-0.48.orig/debian/po/vi.po +++ tftp-hpa-0.48/debian/po/vi.po @@ -0,0 +1,35 @@ +# Vietnamese translation for tftp-hpa. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa 0.40-4.1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2005-08-10 16:26+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: LocFactoryEditor 1.2.2\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Trình nền inetd nên khởi chạy trình phục vụ không?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"Trình tftpd-hpa có thể được khởi chạy bởi siêu trình phục vụ inetd hoặc như " +"là trình nền (dæmon) thì quản lý các kết nối gởi đến tự nó. Chỉ khuyên tùy " +"chọn sau cho trình phục vụ bận lắm." --- tftp-hpa-0.48.orig/debian/po/ca.po +++ tftp-hpa-0.48/debian/po/ca.po @@ -0,0 +1,36 @@ +# +# Catalan translation for tftp-hpa package. +# Copyright (C) 2007 Jaakko Niemi. +# This file is distributed under the same license as the tftp-hpa package. +# +# Jordà Polo , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.42-1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2007-02-04 23:06+0100\n" +"Last-Translator: Jordà Polo \n" +"Language-Team: Català \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "S'hauria d'iniciar el servidor mitjançant inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"És possible iniciar tftpd-hpa mitjançant el superservidor inetd o com a " +"dimoni, deixant que aquest controli les connexions entrants. La darrera " +"opció només es recomana en servidors amb molta càrrega." --- tftp-hpa-0.48.orig/debian/po/sv.po +++ tftp-hpa-0.48/debian/po/sv.po @@ -0,0 +1,41 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa 0.40-4.1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2005-10-05 06:04+0200\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Ska servern startas via inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftpd-hpa kan startas via inetd superserver eller som en fristende daemon " +"och hantera inkommande anslutningar p egen hand. Den senare r bara " +"rekommenderad fr servrar med hg belastning." --- tftp-hpa-0.48.orig/debian/po/ja.po +++ tftp-hpa-0.48/debian/po/ja.po @@ -0,0 +1,42 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2005-04-30 11:52+0900\n" +"Last-Translator: Kenshi Muto \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "inetd ǥФ򳫻Ϥޤ?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftpd-hpa inetd ѡФ鳫Ϥ뤫뤤ϥǡȤƤä" +"³˼Ȥн褹뤫٤ޤԤϡФ˹⤤٤Τ" +"Τߤ˿侩ޤ" --- tftp-hpa-0.48.orig/debian/po/pt.po +++ tftp-hpa-0.48/debian/po/pt.po @@ -0,0 +1,34 @@ +# Portuguese translation of tftp-hpa's debconf messages. +# 2005, Rui Branco > +# +# 2005-10-22 - Rui Branco +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa 0.40-4.1\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2005-10-22 23:17+0100\n" +"Last-Translator: Rui Branco \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "Deverá o servidor ser iniciado pelo inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"O tftp-hpa pode ser iniciado pelo superservidor inetd ou como um 'daemon' " +"encarregando-se ele mesmo de gerir as ligações que chegam. Este último modo " +"apenas é recomendado para servidores que recebam muitos utilizadores." --- tftp-hpa-0.48.orig/debian/po/gl.po +++ tftp-hpa-0.48/debian/po/gl.po @@ -0,0 +1,33 @@ +# Galician translation of tftp-hpa's debconf templates +# This file is distributed under the same license as the tftp-hpa package. +# Jacobo Tarrio , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2008-05-17 21:32+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "¿Debería iniciarse o servidor mediante inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"Pódese iniciar tftpd-hpa no superservidor inetd ou pódese iniciar coma un " +"servizo para que xestione as conexións entrantes el só. Só se recomenda isto " +"se se emprega moito o servidor." --- tftp-hpa-0.48.orig/debian/po/cs.po +++ tftp-hpa-0.48/debian/po/cs.po @@ -0,0 +1,42 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: tftp-hpa\n" +"Report-Msgid-Bugs-To: Source: tftp-hpa@packages.debian.org\n" +"POT-Creation-Date: 2007-11-20 22:46+0200\n" +"PO-Revision-Date: 2005-03-09 18:16+0100\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "Should the server be started by inetd?" +msgstr "M se server spoutt pes inetd?" + +#. Type: boolean +#. Description +#: ../tftpd-hpa.templates:1001 +msgid "" +"tftpd-hpa can be started by the inetd superserver or as a daemon and handle " +"incoming connections by itself. The latter is only recommended for very high " +"usage servers." +msgstr "" +"tftpd-hpa me bet jako samostatn daemon a sm zpracovvat pchoz " +"poadavky, nebo me bt spoutn z metaserveru inetd. Prvn monost je " +"doporuena pouze pro velmi vyten servery."