--- cfengine2-2.2.8.orig/debian/TODO
+++ cfengine2-2.2.8/debian/TODO
@@ -0,0 +1,7 @@
+Things that the Debian package could do with
+============================================
+
+Add a manpage for each binary rather than just a one-size-fits-all manpage.
+(Volunteers?)
+
+ -- Andrew Stribblehill <ads@debian.org> 2003-02-04
--- cfengine2-2.2.8.orig/debian/cfengine2.examples
+++ cfengine2-2.2.8/debian/cfengine2.examples
@@ -0,0 +1 @@
+debian/tmp/usr/share/cfengine/*.example
--- cfengine2-2.2.8.orig/debian/cfengine2.templates
+++ cfengine2-2.2.8/debian/cfengine2.templates
@@ -0,0 +1,28 @@
+Template: cfengine2/run_cfexecd
+Type: boolean
+Default: false
+_Description: Start cfexecd at boot-time?
+ cfexecd is a scheduler that periodically runs cfagent, the program that
+ actually does the work.
+ .
+ If you invoke cfagent by hand or choose to run it from cron instead, you
+ may not require this.
+
+Template: cfengine2/run_cfservd
+Type: boolean
+Default: false
+_Description: Start cfservd at boot-time?
+ cfservd manages file-serving to remote cfagent processes.
+ .
+ It also provides a facility for remote hosts (after authenticating) to ask
+ cfservd to run cfagent.
+
+Template: cfengine2/run_cfenvd
+Type: boolean
+Default: false
+_Description: Start cfenvd at boot-time?
+ cfenvd monitors the system environment (disk usage, run queue length etc.)
+ and notes the mean and standard deviation for each.
+ .
+ Information gathered here is easily available to cfagent, and can be
+ output using cfenvgraph.
--- cfengine2-2.2.8.orig/debian/cfengine2.default
+++ cfengine2-2.2.8/debian/cfengine2.default
@@ -0,0 +1,13 @@
+# Cfengine2 defaults configuration  -*- sh -*-
+
+# Set variable to 1 to start the daemon; 0 otherwise.
+
+# Note that cfservd will only run if you have put a file into
+# /etc/cfengine/cfservd.conf, even if you set RUN_CFSERVD.
+
+RUN_CFSERVD=0
+RUN_CFEXECD=0
+RUN_CFENVD=0
+
+CFSERVD_ARGS=""
+#CFSERVD_ARGS="--multithread"
--- cfengine2-2.2.8.orig/debian/cfengine2.links
+++ cfengine2-2.2.8/debian/cfengine2.links
@@ -0,0 +1,12 @@
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfagent.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfdoc.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfenvd.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfetool.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfenvgraph.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfexecd.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfkey.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfrun.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/cfservd.8.gz
+usr/share/man/man8/cfengine.8.gz usr/share/man/man8/vicf.8.gz
+etc/cfengine var/lib/cfengine2/inputs
+usr/sbin var/lib/cfengine2/bin
--- cfengine2-2.2.8.orig/debian/cfengine2.postrm
+++ cfengine2-2.2.8/debian/cfengine2.postrm
@@ -0,0 +1,17 @@
+#! /bin/sh
+
+set -e
+
+VDIR=/var/lib/cfengine2
+
+if [ "$1" = "purge" ]; then
+    if [ -d "$VDIR" ]; then
+	cd "$VDIR"
+	find . -mindepth 1 -maxdepth 1 \
+	    -name inputs -prune -o -print0 | xargs -0r rm -rf
+	cd /; rmdir "$VDIR"
+    fi
+    rm -f /etc/default/cfengine2
+fi
+
+#DEBHELPER#
--- cfengine2-2.2.8.orig/debian/update-id
+++ cfengine2-2.2.8/debian/update-id
@@ -0,0 +1,28 @@
+#! /usr/bin/perl -i~
+#
+# Edit the patch version specified in either source code or patch
+
+use strict;
+use warnings;
+use Getopt::Std;
+
+my %opts;
+getopts('v:', \%opts);
+
+sub get_version {
+    open(DP, "dpkg-parsechangelog |");
+    while (<DP>) {
+	return 'Debian ' . $1 if /^Version: (.*)$/;
+    }
+    return 0;
+}
+
+my $ver = $opts{'v'} || get_version() || die("Unable to get version");
+my $rex = qr/(?<=\$PatchVersion: ).*(?= \$)/;
+
+while (<>) {
+    s/$rex/$ver/;
+    print;
+}
+
+exit 0;
--- cfengine2-2.2.8.orig/debian/README.build
+++ cfengine2-2.2.8/debian/README.build
@@ -0,0 +1,46 @@
+This package uses a form of source build based on DBS.
+
+To unpack the source, run "debian/rules unpacked".
+
+To upgrade to a new upstream version
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+First, consider whether it's an alpha or beta pre-release. If so, Upstream
+will have chosen a number such as 2.0.9a1 (<uversion> in this document). The
+problem is that dpkg will think that it's more recent than 2.0.9. My best
+solution is to version it as 2.0.8+2.0.9a1 (<dversion>). Horrible yes, but
+less horrible than other solutions.
+
+Create a directory named cfengine2-<dversion> and move the upstream tarball
+into it. (You need not rename it.) Run:
+$ tar cvfz cfengine2_<dversion>.orig.tar.gz cfengine2-<dversion>/*
+
+This orig.tar.gz is what dpkg will diff against.
+
+To make the patch filenames match the new version, run:
+$ perl debian/update-patches -o <old-upstream-ver> -n <new-upstream-ver> \
+    debian/patches/*
+(Remember to remove patches/*~ once you're happy)
+
+Then do:
+
+$ (cd build-tree && for p in ../debian/patches/*; do \
+    echo; echo "### $p ###"; patch -p0 -N --dry-run < $p; \
+    echo "=== $p status:$? ==="; done)
+
+From this you can see which patches work as-is, and which need modifying.
+
+
+Miscellanea
+~~~~~~~~~~~
+
+To setup the source, run "debian/rules setup". This will extract the pristine
+source in build-dir/, apply patches from debian/patches/ and split the package
+scripts from debian/packages.d/ into their component files.
+
+Modifying the source in build-tree/, will not be preserved after the "clean"
+target is run.
+
+Patches can be created and edited using dbs-edit-patch. Read man 7 dbs.
+
+ -- Andrew Stribblehill <ads@debian.org> 2003-05-23
--- cfengine2-2.2.8.orig/debian/cfengine2.preinst
+++ cfengine2-2.2.8/debian/cfengine2.preinst
@@ -0,0 +1,36 @@
+#! /bin/sh
+#
+# Possible invocations:
+#    * new-preinst install
+#    * new-preinst install old-version
+#    * new-preinst upgrade old-version
+#    * old-preinst abort-upgrade new-version
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+	upgrade)
+		bindir="/var/lib/cfengine2/bin"
+		# Remove it if it's a genuine directory so dpkg can install
+		# the link in its place.
+		if [ ! -h "$bindir" -a -d "$bindir" ]; then
+		    rmdir "$bindir" || {
+			fmt <<EOF >&2
+ERROR: $bindir could not be deleted automatically.
+To fix this, check it and delete it yourself, then run
+
+# dpkg --configure cfengine2
+EOF
+			exit 1
+		    }
+		fi
+		;;
+	install|abort-upgrade)
+		;;
+	*)
+		echo "Cfengine2 preinst called with invalid argument, '$1'" >&2
+		exit 1
+		;;
+esac
--- cfengine2-2.2.8.orig/debian/control.debug
+++ cfengine2-2.2.8/debian/control.debug
@@ -0,0 +1,7 @@
+Package: cfengine2-dbg
+Architecture: any
+Depends: cfengine2
+Description: Debug package for cfengine2
+ Contains debugging symbols for the cfengine2 executables so they can
+ be debugged easily.
+
--- cfengine2-2.2.8.orig/debian/cfengine2.init
+++ cfengine2-2.2.8/debian/cfengine2.init
@@ -0,0 +1,146 @@
+#! /bin/sh
+#
+### BEGIN INIT INFO
+# Provides:          cfengine2
+# Required-Start:    $local_fs $remote_fs $network $time
+# Required-Stop:     $local_fs $remote_fs $network
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: GNU configuration engine
+# Description:       Tool for configuring and maintaining network machines
+### END INIT INFO
+#
+# chkconfig: 2345 60 40
+# description: Starts the cfengine daemons for remote and periodic \
+#    execution of cfengine and for environment monitoring.
+#
+
+set -e
+
+CFEXECD=/usr/sbin/cfexecd
+CFSERVD=/usr/sbin/cfservd
+CFENVD=/usr/sbin/cfenvd
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+
+# Has the package been 'removed' but not purged?
+test -f $CFEXECD || exit 0
+
+. /lib/lsb/init-functions
+
+# Source the config file
+DEFAULT=/etc/default/cfengine2
+if [ -f $DEFAULT ]; then
+    . $DEFAULT
+else
+    RUN_CFSERVD=1
+    RUN_CFEXECD=1
+    RUN_CFENVD=1
+fi
+
+# Return-status
+RETVAL=0
+
+if /sbin/start-stop-daemon -V >/dev/null 2>&1; then
+    # start-stop-daemon runs OK
+    SSD=1
+else
+    # Probably not a Debian system
+    SSD=0
+fi
+
+ctrl_daemon () {
+    # Usage: ctrl_daemon <op> <daemon> <timeout> [<args>]
+    #  where <op> is 'start' or 'stop'. 'stop' args are passed to 
+    #  start-stop-daemon.
+
+    OPERATION=$1; shift
+    DAEMON=$1; shift
+    DAEMONNAME=$(basename $DAEMON)
+    case $OPERATION in
+	"start")
+	    set +e
+	    if [ "$SSD" = "1" ]; then
+		CMD="start-stop-daemon --start --quiet --exec $DAEMON -- $@"
+	    else
+		CMD="$DAEMON $@"
+	    fi
+	    log_progress_msg "$DAEMONNAME"
+	    $CMD || RETVAL=1
+	    set -e
+	    ;;
+	"stop")
+	    set +e
+	    log_progress_msg "$DAEMONNAME"
+	    DAEMON=`basename $DAEMON`
+	    if [ "$SSD" = "1" ]; then
+		start-stop-daemon -o --stop --retry 5 --quiet --name "$DAEMON" "$@"
+	    else
+		pkill `basename $DAEMON` 2>/dev/null
+	    fi
+	    test $? = "0" || RETVAL=1
+	    set -e
+	    ;;
+	"*")
+	    log_warning_msg "cfengine2: Invalid operation, must be 'start' or 'stop'."
+	    ;;
+    esac
+}
+
+
+case "$1" in
+    start)
+	RETVAL=0
+	log_daemon_msg "Starting cfengine2"
+	case "$RUN_CFENVD $RUN_CFEXECD $RUN_CFSERVD" in
+	    *1*) ;;
+	    *) exit 0;;
+	esac
+	if [ "$RUN_CFENVD" = "1" ]; then
+	    ctrl_daemon start "$CFENVD"
+	fi
+	if [ "$RUN_CFEXECD" = "1" ]; then
+	    ctrl_daemon start "$CFEXECD"
+	fi
+	if [ "$RUN_CFSERVD" = "1" ]; then
+	    if [ -f /etc/cfengine/cfservd.conf ]; then
+		ctrl_daemon start "$CFSERVD" "$CFSERVD_ARGS"
+	    else
+		log_warning_msg  "Not starting cfservd (/etc/cfengine/cfservd.conf missing)"
+	    fi
+	fi
+	log_end_msg $RETVAL
+	;;
+    
+    stop)
+	RETVAL=0
+	log_daemon_msg "Stopping cfengine2"
+	if [ "$RUN_CFENVD" = "1" ]; then
+	    ctrl_daemon stop "$CFENVD"
+	fi
+	if [ "$RUN_CFEXECD" = "1" ]; then
+	    ctrl_daemon stop "$CFEXECD"
+	fi
+	if [ "$RUN_CFSERVD" = "1" ]; then
+	    ctrl_daemon stop "$CFSERVD"
+	fi
+	log_end_msg $RETVAL
+	;;
+    
+    reload)
+	;;
+    
+    restart|force-reload)
+	$0 stop
+	sleep 1
+	$0 start
+	;;
+    
+    *)
+	N=/etc/init.d/cfengine2
+	echo "Usage: $N {start|stop|restart|force-reload}" >&2
+	exit 1
+	;;
+esac
+
+exit 0
--- cfengine2-2.2.8.orig/debian/po/pt_BR.po
+++ cfengine2-2.2.8/debian/po/pt_BR.po
@@ -0,0 +1,88 @@
+#
+#    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: cfengine2\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2004-06-29 22:10-0300\n"
+"Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
+"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Iniciar o cfexecd no tempo de inicialização ?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"O cfexecd é um agendador que periodicamente executa o cfagent, o "
+"programa que na verdade faz o trabalho pesado."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Caso você inoque o cfagent manualmente ou opte por executá-lo a partir "
+"do cron você não precisará disso."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Iniciar o cfservd em tempo de inicialização ?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "O cfservd gerencia servir arquivos para processos cfagent remotos."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"O cfservd também fornece uma facilidade para hosts remotos (depois de "
+"autenticados) requisitarem ao cfservd a execução do cfagent."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Iniciar o cfenvd em tempo de inicialização ?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"O cfenvd monitora o ambiente de sistema (uso de disco, tamanho da fila "
+"de execução, etc.) e nota o desvio médio e padrão para cada um deles."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"A informação obtida aqui é facilmente disponibilizável para o cfagent e "
+"pode ser consultada através do uso do cfenvgraph."
--- cfengine2-2.2.8.orig/debian/po/cs.po
+++ cfengine2-2.2.8/debian/po/cs.po
@@ -0,0 +1,77 @@
+# Czech translation of cfengine2 templates
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2 2.1.13-1\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2005-04-16 13:40+0200\n"
+"Last-Translator: Martin Sin <martin.sin@seznam.cz>\n"
+"Language-Team: LCzech <debian-l10n-czech@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-2\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Spustit cfexecd pøi startu?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"cfexecd je plánovaè, který pravidelnì spou¹tí cfagent, program "
+"vykonávající vlastní práci."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Jestli¾e vyvoláte cfagent ruènì nebo ho spustíte pomocí cronu, mo¾ná to "
+"nebudete potøebovat."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Spustit cfservd pøi spu¹tìní systému?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd øídí souborovou slu¾bu pomocí vzdálených procesù cfagent."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"Má také výhody pro vzdálené pøístupy (po ovìøení) - cfservd se zeptá "
+"zda spustit cfagent."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Spustit cfenvd pøi spu¹tìní systému?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"cfenvd monitoruje systémové prostøedí (vyu¾ití disku, délku front atd.) "
+"a zaznamenává prùmìrné a standardní odchylky."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"Získané informace jsou snadno pøístupné cfagentu a mohou být vykresleny "
+"pomocí cfenvgraph."
--- cfengine2-2.2.8.orig/debian/po/ca.po
+++ cfengine2-2.2.8/debian/po/ca.po
@@ -0,0 +1,81 @@
+# translation of cfengine2_2.1.10-2_templates.po to catalan
+#
+#    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.
+# Jordi FernÃ¡ndez Mora <jordi.fernandezmo@campus.uab.es>, 2004.
+# Miguel Gea Milvaques <debian@miguelgea.com>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2_2.1.10-2\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2004-12-13 23:34+0100\n"
+"Last-Translator: Miguel Gea Milvaques <debian@miguelgea.com>\n"
+"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.9.1\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Voleu executar cfexecd cada cop que arrenqui la mÃ quina?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr "cfexecd Ã©s una planificador que executa de forma periÃ²dica cfagent, el programa que realment fa el treball."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr "Si executeu cfagent a mÃ  o fent servir el cron, podrieu no necessitar aÃ§Ã²."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Voleu executar cfservd a l'arrancar la mÃ quina ?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd gestiona el servei de fitxers a processos remots de cfagent."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr "Per maquines remotes,tambÃ© dona la facilitat de preguntar a cfservd de executar cfagent (desprÃ¨s de autenticar-se)."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Voleu executar cfenvd a l'arrancar la mÃ quina?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr "cfenvd monitora l'entorn del sistema (Ãºs de disc,longitud de la cua d'execuciÃ³ etc) i anota la mitjana i la desviaciÃ³ estandard per cadascÃºn."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr "La informaciÃ³ reunida acÃ­ estÃ  fÃ cilment disponible pel cfagent, i es pot veure usant cfenvgraph."
+
--- cfengine2-2.2.8.orig/debian/po/fr.po
+++ cfengine2-2.2.8/debian/po/fr.po
@@ -0,0 +1,89 @@
+#
+#    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: cfengine2_2.0.7p3-2\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2003-06-21 10:29+0200\n"
+"Last-Translator: Michel Grentzinger <mic.grentz@online.fr>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Faut-il lancer cfexecd au démarrage ?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"cfexecd est un programmateur qui lance périodiquement cfagend, le programme "
+"qui réalise réellement le travail."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Si vous lancez cfagent vous-même ou si vous préférez le lancer via "
+"« cron », vous n'en avez pas besoin."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Faut-il lancer cfservd au démarrage ?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr ""
+"cfservd gère le partage des fichiers pour les processus distants cfagent."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"Il fournit également aux hôtes distants (après authentification) la "
+"possibilité de demander à cfservd le lancement de cfagent."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Faut-il lancer cfenvd au démarrage ?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"cfenvd surveille l'environnement du système (utilisation des disques, "
+"vérification de la longueur de la file d'attente, etc.) et note la moyenne "
+"et l'écart-type de chacun des paramètres."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"Les informations recueillies ici peuvent être facilement accédées par "
+"cfagent et représentées graphiquement par cfenvgraph."
+
--- cfengine2-2.2.8.orig/debian/po/pt.po
+++ cfengine2-2.2.8/debian/po/pt.po
@@ -0,0 +1,91 @@
+# Portuguese translation for cfengine2 debconf messages.
+# Copyright (C) 2007 Pedro Ribeiro <p.m42.ribeiro@gmail.com>
+# This file is distributed under the same license as the cfengine2 package.
+# Pedro Ribeiro <p.m42.ribeiro@gmail.com>, 2007
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2 2.1.22\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2007-04-21 04:30+0200\n"
+"PO-Revision-Date: 2007-05-22 22:08+0100\n"
+"Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid "Start cfexecd at boot-time?"
+msgstr "Iniciar cfexecd no arranque?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"cfexecd Ã© um programa que periodicamente executa o cfagent, o programa que "
+"realmente faz o trabalho."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Se executar o cfagent manualmente ou criar uma regra para o cron, pode nÃ£o "
+"precisar disto."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "Start cfservd at boot-time?"
+msgstr "Iniciar cfservd no arranque?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd gere o serviÃ§o de ficheiros para processos remotos do cfagent."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"Fornece tambÃ©m uma funcionalidade para que mÃ¡quinas remotas (apÃ³s "
+"autenticaÃ§Ã£o) possam iniciar o cfagent atravÃ©s do cfservd."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid "Start cfenvd at boot-time?"
+msgstr "Iniciar o cfenvd no arranque?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"cfenvd monitoriza o ambiente do sistema (utilizaÃ§Ã£o do disco, tamanho da fila "
+"de espera do processador, etc.) e calcula a mÃ©dia e o desvio padrÃ£o de cada "
+"um dos indicadores."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"A informaÃ§Ã£o obtida aqui estÃ¡ disponÃ­vel para o cfagent, e pode ser mostrada "
+"com o cfenvgraph."
--- cfengine2-2.2.8.orig/debian/po/nl.po
+++ cfengine2-2.2.8/debian/po/nl.po
@@ -0,0 +1,69 @@
+#
+#    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: cfengine2\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2003-08-10 22:40+0100\n"
+"Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
+"Language-Team: dutch <debian-l10n-dutch@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "cfexecd bij het opstarten starten?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "cfexecd is a scheduler that periodically runs cfagent, the program that actually does the work."
+msgstr "cfexecd is een planner die periodiek cfagent, het programma dat het eigenlijke werk doet, aanroept."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "If you invoke cfagent by hand or choose to run it from cron instead, you may not require this."
+msgstr "Dit is niet nodig indien u verkiest om cfagent handmatig of via cron aan te roepen."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "cfservd bij het opstarten starten?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd staat in voor het aanbieden van bestanden aan cfagent-processen op andere computers."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "It also provides a facility for remote hosts (after authenticating) to ask cfservd to run cfagent."
+msgstr "Daarnaast verzorgt het een dienst waarmee andere computers (na authenticatie) cfservd kunnen vragen om cfagent uit te voeren."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "cfenvd bij het opstarten starten?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "cfenvd monitors the system environment (disk usage, run queue length etc.) and notes the mean and standard deviation for each."
+msgstr "cfenvd controleert de systeemomgeving (harde-schijf-gebruik, run-queue-lengte, etc.) en houd gemiddelde en standaard afwijking voor elk bij."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Information gathered here is easily available to cfagent, and can be output using cfenvgraph."
+msgstr "De hier verzamelde informatie is beschikbaar voor cfagent, en kan uitgelezen worden met behulp van cfenvgraph."
+
--- cfengine2-2.2.8.orig/debian/po/tr.po
+++ cfengine2-2.2.8/debian/po/tr.po
@@ -0,0 +1,91 @@
+# Turkish translation of cfengine2.
+# This file is distributed under the same license as the cfengine2 package.
+# Osman YÃ¼ksel <yuxel@sonsuzdongu.com>, 2004.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2004-03-11 11:27+0000\n"
+"PO-Revision-Date: 2004-06-06 05:40+0300\n"
+"Last-Translator: Osman YÃ¼ksel <yuxel@sonsuzdongu.com>\n"
+"Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\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: KBabel 1.3.1\n"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "cfexecd aÃ§Ä±lÄ±ÅŸ sÄ±rasÄ±nda baÅŸlatÄ±lsÄ±n mÄ±?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"cfexecd, cfagent'Ä± periyodik olarak Ã§alÄ±ÅŸtÄ±ran bir zamanlayÄ±cÄ± programdÄ±r."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"EÄŸer cfagent programÄ±nÄ± elle veya cron ile Ã§alÄ±ÅŸtÄ±rmak isterseniz, buna "
+"ihtiyacÄ±nÄ±z yok."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "cfservd aÃ§Ä±lÄ±ÅŸ sÄ±rasÄ±nda baÅŸlatÄ±lsÄ±n mÄ±?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr ""
+"cfservd, uzaktaki cfagent sÃ¼reÃ§leri iÃ§in dosya sunucusu olarak hizmet eder."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"AyrÄ±ca, uzaktaki makineler iÃ§in (kimlik denetiminden sonra), cfservd programÄ±na "
+"cfagent programÄ±nÄ± Ã§alÄ±ÅŸtÄ±rma isteÄŸi gÃ¶nderebilir."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "xfevnd aÃ§Ä±lÄ±ÅŸ sÄ±rasÄ±nda baÅŸlatÄ±lsÄ±n mÄ±?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"cfenvd, sistem ortamÄ±nÄ± (disk kullanÄ±mÄ±, Ã§alÄ±ÅŸma kuyruk uzunluÄŸu gibi) izler ve "
+"bu bÃ¼yÃ¼klÃ¼klerin ortalama ve standart sapmalarÄ±nÄ± kaydeder."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"Burada toplanan bilgiler cfagent tarafÄ±ndan kolayca kullanÄ±labilir ve cfenvgraph "
+"tarafÄ±ndan Ã§Ä±ktÄ±sÄ± alÄ±nabilir."
--- cfengine2-2.2.8.orig/debian/po/vi.po
+++ cfengine2-2.2.8/debian/po/vi.po
@@ -0,0 +1,70 @@
+# Vietnamese translation for cfengine2.
+# Copyright Â© 2005 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2005.
+# 
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2 2.1.14-1\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2005-06-13 15:36+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\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"
+
+#.Description
+#:../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Khá»Ÿi cháº¡y trÃ¬nh cfexecd vÃ o lÃºc khá»Ÿi Ä‘á»™ng mÃ¡y khÃ´ng?"
+
+#.Description
+#:../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr "TrÃ¬nh ná»n cfexecd lÃ  má»™t trÃ¬nh Ä‘á»‹nh thá»i mÃ  cháº¡y theo Ä‘á»‹nh ká»· trÃ¬nh cfagent mÃ  tháº­t lÃ m cÃ´ng viá»‡c."
+
+#.Description
+#:../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr "Náº¿u báº¡n tá»± gá»i trÃ¬nh cfagent, hoáº·c chá»n cháº¡y nÃ³ tá»« trÃ¬nh cron (Ä‘á»‹nh ká»·) thay tháº¿, báº¡n cÃ³ láº½ sáº½ khÃ´ng cáº§n trÃ¬nh Ä‘á»‹nh thá»i nÃ y."
+
+#.Description
+#:../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Khá»Ÿi cháº¡y trÃ¬nh cfservd vÃ o lÃºc khá»Ÿi Ä‘á»™ng mÃ¡y khÃ´ng?"
+
+#.Description
+#:../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "TrÃ¬nh ná»n cfservd quáº£n lÃ½ cÃ¡ch phá»¥c vá»¥ táº­p tin cho tiáº¿n trÃ¬nh cfagent á»Ÿ xa."
+
+#.Description
+#:../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr "NÃ³ cÅ©ng cung cáº¥p kháº£ nÄƒng cho phÃ©p mÃ¡y tá»« xa (sau khi xÃ¡c thá»±c) yÃªu cáº§u trÃ¬nh ná»n cfservd cháº¡y trÃ¬nh cfagent."
+
+#.Description
+#:../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Khá»Ÿi cháº¡y trÃ¬nh cfenvd vÃ o lÃºc khá»Ÿi Ä‘á»™ng mÃ¡y khÃ´ng?"
+
+#.Description
+#:../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr "TrÃ¬nh cfenvd theo dÃµi mÃ´i trÆ°á»ng há»‡ thá»‘ng (cÃ¡ch sá»­ dá»¥ng chá»— trÃªn Ä‘Ä©a, Ä‘á»™ dÃ i hÃ ng Ä‘á»£i cháº¡y v.v.), vÃ  ghi lÆ°u thá»‘ng kÃª (Ä‘á»™ lá»‡ch trung bÃ¬nh vÃ  chuáº©n) cho má»—i trÆ°á»ng há»£p."
+
+#.Description
+#:../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr "CÃ¡c tin tá»©c nÃ y sáºµn sÃ ng má»™t cÃ¡ch dá»… dÃ ng cho trÃ¬nh cfagent, vÃ  cÃ³ thá»ƒ Ä‘Æ°á»£c xuáº¥t dÃ¹ng trÃ¬nh cfenvgraph."
--- cfengine2-2.2.8.orig/debian/po/POTFILES.in
+++ cfengine2-2.2.8/debian/po/POTFILES.in
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] cfengine2.templates
--- cfengine2-2.2.8.orig/debian/po/de.po
+++ cfengine2-2.2.8/debian/po/de.po
@@ -0,0 +1,91 @@
+# Translation of cfengine2 debconf templates to German
+# Copyright (C) Patrick Willam <patrick@patrick-willam.de>, 2003.
+# Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2007.
+# This file is distributed under the same license as the cfengine2 package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2 2.1.20-1\n"
+"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n"
+"POT-Creation-Date: 2007-02-09 10:07+0100\n"
+"PO-Revision-Date: 2007-02-18 10:49+0100\n"
+"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
+"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid "Start cfexecd at boot-time?"
+msgstr "Soll cfexecd beim Hochfahren gestartet werden?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"Cfexecd ist ein Steuerprogramm, welches periodisch Cfagent ausführt. Cfagent "
+"erledigt die eigentliche Arbeit."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Falls Sie Cfagent von Hand aufrufen oder es stattdessen vom cron ausführen, "
+"dann könnten Sie dies nicht benötigen."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "Start cfservd at boot-time?"
+msgstr "Soll Cfservd beim Hochfahren gestartet werden?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "Cfservd ist ein Datei-Server für nicht-lokale Cfagent-Prozesse."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+"Für nicht-lokale Rechner stellt es außerdem (nach Authentifizierung) eine "
+"Möglichkeit zur Verfügung, Cfservd darum zu bitten, Cfagent auszuführen."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid "Start cfenvd at boot-time?"
+msgstr "Soll Cfenvd beim Hochfahren gestartet werden?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+"Cfenvd beobachtet ihre Systemumgebung - Plattennutzung, Länge der "
+"Prozesswarteschlange (run queue length) usw. - und notiert jeweils den "
+"Durchschnitt und die Standard-Abweichung."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
+"Hier zusammengetragene Informationen sind für cfagent problemlos verfügbar, "
+"und können mittels Cfenvgraph ausgegeben werden."
--- cfengine2-2.2.8.orig/debian/po/sv.po
+++ cfengine2-2.2.8/debian/po/sv.po
@@ -0,0 +1,63 @@
+#
+#    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: cfengine2 2.1.15-1\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2005-10-25 17:21+0100\n"
+"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
+"Language-Team: Swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=iso-8859-1\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: swed\n"
+"X-Poedit-Country: swed\n"
+"X-Poedit-SourceCharset: iso-8859-1\n"
+
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Starta cfexecd vid systemets uppstart?"
+
+#: ../cfengine2.templates:4
+msgid "cfexecd is a scheduler that periodically runs cfagent, the program that actually does the work."
+msgstr "cfexecd är en schemaläggare som regelbundet kör cfagent, programmet som faktiskt gör jobbet."
+
+#: ../cfengine2.templates:4
+msgid "If you invoke cfagent by hand or choose to run it from cron instead, you may not require this."
+msgstr "Om du startar cfagent manuellt eller väljer att köra det från cron istället behöver du inte kräva detta."
+
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Starta cfservd vid systemets uppstart?"
+
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd hanterar filtjänsten för cfagent-processer på fjärrsystem."
+
+#: ../cfengine2.templates:14
+msgid "It also provides a facility for remote hosts (after authenticating) to ask cfservd to run cfagent."
+msgstr "Den ger också en möjligheten för fjärrsystem (efter autentisering) att fråga cfservd att köra cfagent."
+
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Starta cfenvd vid systemets uppstart?"
+
+#: ../cfengine2.templates:23
+msgid "cfenvd monitors the system environment (disk usage, run queue length etc.) and notes the mean and standard deviation for each."
+msgstr "cfenvd undersöker systemets miljö (diskanvändning, kör kölängder etc) och noterar användning och standardavvikelser för dessa."
+
+#: ../cfengine2.templates:23
+msgid "Information gathered here is easily available to cfagent, and can be output using cfenvgraph."
+msgstr "Information som samlas in här är lätt tillgänglig för cfagent och kan hämtas ut med cfenvgraph."
+
--- cfengine2-2.2.8.orig/debian/po/gl.po
+++ cfengine2-2.2.8/debian/po/gl.po
@@ -0,0 +1,82 @@
+# Galician translation of cfengine2's debconf templates
+# This file is distributed under the same license as the cfengine2 package.
+# Jacobo Tarrio <jtarrio@debian.org>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cfengine2\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2008-04-30 04:30+0200\n"
+"PO-Revision-Date: 2008-06-02 18:40+0100\n"
+"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
+"Language-Team: Galician <proxecto@trasno.net>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid "Start cfexecd at boot-time?"
+msgstr "Â¿Iniciar cfexecd co ordenador?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+"cfexecd Ã© un planificador que executa periodicamente cfagent, o programa que "
+"realmente fai o traballo."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:1001
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+"Se executa cfagent Ã¡ man ou o executa mediante cron, pode non precisar disto."
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "Start cfservd at boot-time?"
+msgstr "Â¿Iniciar cfservd co ordenador?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:2001
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid "Start cfenvd at boot-time?"
+msgstr "Â¿Iniciar cfenvd co ordenador?"
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../cfengine2.templates:3001
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
--- cfengine2-2.2.8.orig/debian/po/ja.po
+++ cfengine2-2.2.8/debian/po/ja.po
@@ -0,0 +1,82 @@
+#
+#    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: PACKAGE VERSION\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2003-12-23 00:07+0900\n"
+"Last-Translator: Hideki Yamane <henrich@samba.gr.jp>\n"
+"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=EUC-JP\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "¥·¥¹¥Æ¥àµ¯Æ°»þ¤Ë cfexecd ¤òµ¯Æ°¤·¤Þ¤¹¤«?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr "cfexecd ¤Ï¡¢¼ÂºÝ¤ÎÆ°ºî¤ò¹Ô¤¦ cfagent ¤òÄê´üÅª¤Ëµ¯Æ°¤¹¤ë¥¹¥±¥¸¥å¡¼¥é¤Ç¤¹¡£"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr "¼êÆ°¡¢¤Þ¤¿¤ÏÂå¤ï¤ê¤Ë cron ¤«¤é cfagent ¤òµ¯Æ°¤¹¤ë»ö¤òÁª¤ó¤À¾ì¹ç¡¢¤³¤ì¤ÏÉÔÍ×¤Ç¤¹¡£"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "¥·¥¹¥Æ¥àµ¯Æ°»þ¤Ë cfservd ¤òµ¯Æ°¤·¤Þ¤¹¤«?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd ¤Ï¥ê¥â¡¼¥È¤Î cfagent ¥×¥í¥»¥¹¤Ø¤Î¥Õ¥¡¥¤¥ëÄó¶¡¤òÃ´Åö¤·¤Þ¤¹¡£"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr "¤³¤ì¤Ï¥ê¥â¡¼¥È¥Û¥¹¥È¤ËÂÐ¤·¤Æ (Ç§¾Ú¸å¤Ë) cfagent ¤òÆ°ºî¤µ¤»¤ë¤«¤É¤¦¤«¤ò"
+" cfservd ¤Ë³ÎÇ§¤¹¤ëµ¡Ç½¤âÄó¶¡¤·¤Þ¤¹¡£"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "¥·¥¹¥Æ¥àµ¯Æ°»þ¤Ë cfenvd ¤òµ¯Æ°¤µ¤»¤Þ¤¹¤«?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr "cfenvd ¤Ï¥·¥¹¥Æ¥à¤ÎÆ°ºî´Ä¶­ (¥Ç¥£¥¹¥¯¤Î»ÈÍÑÎÌ¤ä run queue ¤ÎÄ¹¤µ¤Ê¤É) "
+"¤ò´Æ»ë¤·¡¢¤½¤ì¤¾¤ì¤ÎÃÍ¤ÈÉ¸½àÊÐº¹¤òµ­Ï¿¤·¤Þ¤¹¡£"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr "¤³¤³¤Ç¼ý½¸¤·¤¿¾ðÊó¤ÏÍÆ°×¤Ë cfagent ¤ÇÍøÍÑ¤Ç¤­¡¢cfenvgraph ¤òÍøÍÑ¤·¤Æ½ÐÎÏ²ÄÇ½¤Ç¤¹¡£"
--- cfengine2-2.2.8.orig/debian/po/templates.pot
+++ cfengine2-2.2.8/debian/po/templates.pot
@@ -0,0 +1,79 @@
+#
+#    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: PACKAGE VERSION\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"cfexecd is a scheduler that periodically runs cfagent, the program that "
+"actually does the work."
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:4
+msgid ""
+"If you invoke cfagent by hand or choose to run it from cron instead, you may "
+"not require this."
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:14
+msgid ""
+"It also provides a facility for remote hosts (after authenticating) to ask "
+"cfservd to run cfagent."
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"cfenvd monitors the system environment (disk usage, run queue length etc.) "
+"and notes the mean and standard deviation for each."
+msgstr ""
+
+#. Description
+#: ../cfengine2.templates:23
+msgid ""
+"Information gathered here is easily available to cfagent, and can be output "
+"using cfenvgraph."
+msgstr ""
--- cfengine2-2.2.8.orig/debian/po/es.po
+++ cfengine2-2.2.8/debian/po/es.po
@@ -0,0 +1,84 @@
+# cfengine2 po-debconf translation to Spanish
+# Copyright (C) 2005 Software in the Public Interest
+# This file is distributed under the same license as the cfengine2 package.
+#
+# Changes:
+#  - Initial translation
+#         CÃ©sar GÃ³mez MartÃ­n <cesar.gomez@gmail.com>
+#
+#   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/
+#    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: cfengine2\n"
+"POT-Creation-Date: 2003-04-05 22:13-0300\n"
+"PO-Revision-Date: 2005-10-10 17:07+0100\n"
+"Last-Translator: CÃ©sar GÃ³mez MartÃ­n <cesar.gomez@gmail.com>\n"
+"Language-Team: Debian l10n spanish <debian-l10n-spanish@lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Language: Spanish\n"
+"X-Poedit-Country: SPAIN\n"
+"X-Poedit-SourceCharset: utf-8\n"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "Start cfexecd at boot-time?"
+msgstr "Â¿Quiere arrancar cfexecd en el inicio del sistema?"
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "cfexecd is a scheduler that periodically runs cfagent, the program that actually does the work."
+msgstr "cfexecd es un programador que ejecuta cfagent periÃ³dicamente, el programa que realmente hace el trabajo."
+
+#. Description
+#: ../cfengine2.templates:4
+msgid "If you invoke cfagent by hand or choose to run it from cron instead, you may not require this."
+msgstr "No necesita esto si ejecuta cfagent manualmente o si escoge ejecutarlo a travÃ©s de cron."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "Start cfservd at boot-time?"
+msgstr "Â¿Quiere arrancar cfservd en el inicio del sistema?"
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "cfservd manages file-serving to remote cfagent processes."
+msgstr "cfservd gestiona el servicio de ficheros a procesos cfagent remotos."
+
+#. Description
+#: ../cfengine2.templates:14
+msgid "It also provides a facility for remote hosts (after authenticating) to ask cfservd to run cfagent."
+msgstr "TambiÃ©n provee a las mÃ¡quinas remotas (despuÃ©s de autenticarse) de la capacidad de pedir a cfservd que ejecute cfagent."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Start cfenvd at boot-time?"
+msgstr "Â¿Quiere arrancar cfenvd en el inicio del sistema?"
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "cfenvd monitors the system environment (disk usage, run queue length etc.) and notes the mean and standard deviation for each."
+msgstr "cfenvd comprueba el entorno del sistema (uso del disco, longitud de las colas de ejecuciÃ³n, etc.) y toma nota de las medias y de las desviaciones estÃ¡ndares de cada componente."
+
+#. Description
+#: ../cfengine2.templates:23
+msgid "Information gathered here is easily available to cfagent, and can be output using cfenvgraph."
+msgstr "La informaciÃ³n aquÃ­ reunida estÃ¡ disponible para cfagent y puede ser mostrada usando cfenvgraph."
+
--- cfengine2-2.2.8.orig/debian/cfengine2.NEWS
+++ cfengine2-2.2.8/debian/cfengine2.NEWS
@@ -0,0 +1,19 @@
+cfengine2 (2.2.6-1) unstable; urgency=medium
+
+  * From version 2.2.4 of cfengine, documentation is not included in the
+    upstream sources and was not present in the cfengine2-doc package.
+
+  * From version 2.2.6, the example-files are included in the
+    cfengine2 package and the cfengine2-doc package is removed. Online
+    documentation can be found here: http://www.cfengine.org/document.php
+
+ -- Morten Werner Forsbring <werner@debian.org>  Wed, 28 Apr 2008 22:49:49 +0200
+
+cfengine2 (2.1.15-1) unstable; urgency=high
+
+  * Extra encryption stage added in C5 protocol. NOTE: This makes 2.1.14
+    cfagent clients unable to talk to older servers. (Upgrade servers first,
+    or at the same time.)
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Thu, 19 Jun 2005 22:59:27 +0200
+
--- cfengine2-2.2.8.orig/debian/cfengine2.dirs
+++ cfengine2-2.2.8/debian/cfengine2.dirs
@@ -0,0 +1,4 @@
+usr/sbin
+usr/share/cfengine2
+var/lib/cfengine2
+etc/cfengine
--- cfengine2-2.2.8.orig/debian/update-jumbo
+++ cfengine2-2.2.8/debian/update-jumbo
@@ -0,0 +1,71 @@
+#! /bin/sh
+#
+# Update the jumbo patch; output to stdout
+
+comment() {
+	sed 's/^/# /'
+}
+
+list_patches() {
+	for patch in $PATCHES; do
+		patch=`basename $patch`
+		echo $patch
+		docfile="debian/patches.doc/$patch"
+		if [ -f "$docfile" ]; then
+			printf '\t%s\n\n' "`head -1 $docfile`"
+		fi
+	done
+}
+
+show_patch() {
+	base=`basename $1`
+	echo '#'
+	echo '# **' $base '**'
+	docfile="debian/patches.doc/$base"
+	if [ -f "$docfile" ]; then
+		comment < debian/patches.doc/$base
+	fi
+	cat $1
+}
+
+JUMBO=`mktemp -t jumbo.XXXXXXXXXX` || exit 1
+
+if [ "x$1" != "x-" ]; then
+	VER=`awk '/#define PATCHVER/ {print $4}' < debian/patches/990_patchlevel`
+	exec > ~/public_html/cfengine-$VER.diff
+fi
+
+PATCHES="debian/patches/[0123456789]*"
+comment <<eof
+This is patch $VER.
+
+If you have problems with this patch that are not present with the
+official Cfengine release, please get in touch with me about it.
+
+Conversely, if you find it useful, I'd appreciate being told :)
+
+  -- Andrew Stribblehill <ads@debian.org>
+
+This patch comprises the following smaller patches, derived from the
+Debian package; if you just want specific ones, download the latest
+Debian source package (for sid) and get them from there.
+
+Alternatively, my working set is available at
+http://compsoc.dur.ac.uk/proxy/womble/ads/debian/cfengine2/cfengine2-<version>/
+
+The patches are in debian/patches. The debian/changelog file should give
+background details about the problems that each patch solves:
+
+`list_patches`
+
+Files changed in this patch:
+
+eof
+
+for patch in $PATCHES; do
+	show_patch $patch >> $JUMBO
+done
+
+diffstat -c -w70 -p1 $JUMBO
+cat $JUMBO
+rm -f $JUMBO
--- cfengine2-2.2.8.orig/debian/copyright
+++ cfengine2-2.2.8/debian/copyright
@@ -0,0 +1,52 @@
+This is the Debian GNU/Linux packaged version of cfengine.
+
+The current Debian maintainer is Morten Werner Forsbring <werner@debian.org>.
+
+It was downloaded from: http://www.cfengine.org/downloads/
+
+Upstream Author: Mark Burgess
+
+Copyright: 1993 - 2008 Mark Burgess
+
+License:
+
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License.
+ 
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+ 
+  You should have received a copy of the GNU General Public License with
+  the Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL;
+  if not, write to the Free Software Foundation, Inc., 51 Franklin St,
+  Fifth Floor, Boston, MA 02110-1301, USA.
+
+On Debian systems, the complete text of the GNU General Public
+License, version 2, can be found in /usr/share/common-licenses/GPL-2.
+
+License exception:
+
+  It is allowed to link cfengine with OpenSSL, per the following mail:
+  
+  From: Mark.Burgess@iu.hio.no
+  Subject: Re: cfengine, openssl and the license license
+  To: tollef@add.no
+  Date: Thu, 25 Apr 2002 11:33:29 +0200 (MET DST)
+  
+  
+  Sure.
+  
+  On 25 Apr, Tollef Fog Heen wrote:
+  > * 
+  > 
+  > | I see. Well, you have my blessing to use cfengine-2.0.1 with openssl
+  > | for now. I shall be releasing another patch version shortly with
+  > | various minor developments, and I'll include the modification
+  > | there. In the mean time, there are not significant changes, so
+  > | you can use 2.0.1 as your base.
+  > 
+  > Great.  Does this apply for 1.6.3 as well?
+  > 
--- cfengine2-2.2.8.orig/debian/cfengine2.install
+++ cfengine2-2.2.8/debian/cfengine2.install
@@ -0,0 +1 @@
+debian/tmp/usr/sbin
--- cfengine2-2.2.8.orig/debian/update-patches
+++ cfengine2-2.2.8/debian/update-patches
@@ -0,0 +1,14 @@
+#! /usr/bin/perl -p -i~
+
+use warnings;
+
+BEGIN {
+	use Getopt::Std;
+	getopt('on', \%opts);
+	$oldver=$opts{'o'} || die "No old version set (-o <version>)";
+	$newver=$opts{'n'} || die "No new version set (-n <version>)";
+}
+
+if (/^(diff|\+\+\+|---)/) {
+	s/(?<=cfengine-)$oldver/$newver/g;
+}
--- cfengine2-2.2.8.orig/debian/patches/050_manpages_path.diff
+++ cfengine2-2.2.8/debian/patches/050_manpages_path.diff
@@ -0,0 +1,30 @@
+diff -ruN cfengine-2.2.8-old/doc/cfengine.8 cfengine-2.2.8/doc/cfengine.8
+--- cfengine-2.2.8-old/doc/cfengine.8	2008-03-27 00:07:01.000000000 +0100
++++ cfengine-2.2.8/doc/cfengine.8	2008-03-27 00:07:01.000000000 +0100
+@@ -2,19 +2,19 @@
+ .SH NAME
+ cfengine \- network configuration engine
+ .SH SYNOPSIS
+-/usr/local/sbin/cfagent [options]
++/usr/sbin/cfagent [options]
+ .PP
+-/usr/local/sbin/cfrun [options] 
++/usr/sbin/cfrun [options] 
+ .PP
+-/usr/local/sbin/cfservd
++/usr/sbin/cfservd
+ .PP
+-/usr/local/sbin/cfexecd
++/usr/sbin/cfexecd
+ .PP
+-/usr/local/sbin/cfenvd
++/usr/sbin/cfenvd
+ .PP
+-/usr/local/sbin/cfkey
++/usr/sbin/cfkey
+ .PP
+-/usr/local/sbin/cfenvgraph
++/usr/sbin/cfenvgraph
+ 
+ .SH DESCRIPTION
+ .B cfengine
--- cfengine2-2.2.8.orig/debian/patches/013_manpages_conffile.diff
+++ cfengine2-2.2.8/debian/patches/013_manpages_conffile.diff
@@ -0,0 +1,16 @@
+diff -ruN cfengine-2.2.8-old/doc/cfengine.8 cfengine-2.2.8/doc/cfengine.8
+--- cfengine-2.2.8-old/doc/cfengine.8	2005-02-08 13:21:25.000000000 +0100
++++ cfengine-2.2.8/doc/cfengine.8	2008-03-27 00:06:29.000000000 +0100
+@@ -37,8 +37,10 @@
+ the configuration of the host is checked against this file
+ and, if desired, any deviations are fixed.
+ .B cfagent
+-reads a configuration file called cfengine.conf in
+-a directory pointed to by the environment variable CFINPUTS.
++reads a configuration file called cfagent.conf in
++a directory pointed to by the environment variable CFINPUTS
++(must be an absolute path) or the preconfigured WORKDIR/inputs/
++directory (--with-workdir=WORKDIR).
+ .B cfagent
+ performs host integrity and security checks as well
+ as installing and repairing system configuration.
--- cfengine2-2.2.8.orig/debian/cc
+++ cfengine2-2.2.8/debian/cc
@@ -0,0 +1,6 @@
+#! /bin/sh
+#
+# cc wrapper
+
+test -x /usr/bin/ccache && exec ccache /usr/bin/cc "$@"
+/usr/bin/cc "$@"
--- cfengine2-2.2.8.orig/debian/compat
+++ cfengine2-2.2.8/debian/compat
@@ -0,0 +1 @@
+4
--- cfengine2-2.2.8.orig/debian/dbs-hooks/rm_cscope
+++ cfengine2-2.2.8/debian/dbs-hooks/rm_cscope
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+case "$1" in
+    "update-patch-prediff")
+	find . -name 'cscope.out' -print0 | xargs -0r rm
+	;;
+    "*")
+	;;
+esac
--- cfengine2-2.2.8.orig/debian/cfengine2.postinst
+++ cfengine2-2.2.8/debian/cfengine2.postinst
@@ -0,0 +1,109 @@
+#! /bin/sh
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see /usr/doc/packaging-manual/
+#
+# quoting from the policy:
+#     Any necessary prompting should almost always be confined to the
+#     post-installation script, and should be protected with a conditional
+#     so that unnecessary prompting doesn't happen if a package's
+#     installation fails and the `postinst' is called with `abort-upgrade',
+#     `abort-remove' or `abort-deconfigure'.
+
+set -e
+
+INPUTS=/var/lib/cfengine2/inputs
+
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+make_key () {
+    if [ ! -f /var/lib/cfengine2/ppkeys/localhost.priv ]; then
+	cfkey
+    fi
+}
+
+sed_script_config_daemons () {
+    # Spits out sed commands to re-configure /etc/default/cfengine2
+    ALL_DAEMONS="CFSERVD CFEXECD CFENVD"
+    for DAEMON in $ALL_DAEMONS; do
+	LC_DAEMON=$(echo $DAEMON | tr 'A-Z' 'a-z')
+	db_get "cfengine2/run_${LC_DAEMON}"
+	case "$RET" in
+	    true|1)
+		echo -n "s/^RUN_$DAEMON=[01]/RUN_$DAEMON=1/;"
+		;;
+	    false|0)
+		echo -n "s/^RUN_$DAEMON=[01]/RUN_$DAEMON=0/;"
+		;;
+	    *) echo "Wacky debconf answer: '$RET'" >&2 ; return 1;;
+	esac
+    done
+}
+
+config_daemons() {
+    CUR=/etc/default/cfengine2
+    test ! -f "$CUR" && cp -p /usr/share/cfengine2/default "$CUR"
+
+    SEDCMD=$(sed_script_config_daemons)
+
+    if [ ! "x$SEDCMD" = "x" ]; then
+	NEW=$(mktemp "${CUR}.XXXXXXXXX")
+	cp -a -f "$CUR" "$NEW"
+	sed $SEDCMD < "$CUR" > "$NEW"
+	mv -f "$NEW" "$CUR"
+    fi
+}
+
+
+no_files_in_common() {
+    # returns 0 if no files in $1 exist in $2;
+    # 1 if they intersect; 2 if symlink
+    for d in "$@"; do
+	test -L "$d" && return 2
+	test -d "$d" || return 0
+    done
+
+    (cd "$1" && find . -mindepth 1 -print0 2>/dev/null) |\
+	(cd "$2" && perl -ne \
+	'BEGIN {$/="\0"}; chomp; if (-e) {exit 1;}')
+    return $?
+}
+
+move_inputs_to_etc() {
+    test -d "$INPUTS" && return
+    if no_files_in_common "$INPUTS" /etc/cfengine; then
+	(cd "$INPUTS" && tar cf - .) | (cd /etc/cfengine && tar xpf -) && \
+	    { rm -rf "$INPUTS" && ln -s /etc/cfengine "$INPUTS"; }
+    else
+	cat <<-EOF
+	WARNING: Could not move files from $INPUTS to /etc/cfengine
+	Please do this manually and then run:
+	\$ ln -s /etc/cfengine $INPUTS
+EOF
+    fi
+}
+
+case "$1" in
+    configure|reconfigure)
+	make_key
+	config_daemons
+	rm -f /var/lib/cfengine2/av.db
+	test -L "$INPUTS" || move_inputs_to_etc
+	;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+	;;
+    *)
+	echo "postinst called with unknown argument \`$1'" >&2
+        exit 0
+	;;
+esac
+
+#DEBHELPER#
--- cfengine2-2.2.8.orig/debian/rules
+++ cfengine2-2.2.8/debian/rules
@@ -0,0 +1,130 @@
+#! /usr/bin/make -f
+#
+# cfengine2 rules
+
+# compat=4
+
+# Makes other DH_OPTIONS lines work
+export DH_OPTIONS
+
+#export DH_VERBOSE=1
+
+SCRIPT_DIR = /usr/share/dbs
+
+# Compiler flags
+CC := $(CURDIR)/debian/cc
+CFLAGS          := -Wall -g -D_FILE_OFFSET_BITS=64
+OPTFLAGS	:= -O2
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	OPTFLAGS := -O0
+endif
+
+UPSTREAM_VERSION := `dpkg-parsechangelog | awk '$$1 == "Version:" {sub(/-.*$$/, ""); print $$2}'`
+#UPSTREAM_VERSION := 2.1.0p1
+
+# the dbs rules
+TAR_DIR	:= cfengine-$(UPSTREAM_VERSION)
+include $(SCRIPT_DIR)/dbs-build.mk
+
+# dpkg-arch rules
+ifeq (,$(DEB_BUILD_GNU_TYPE))
+  include $(SCRIPT_DIR)/dpkg-arch.mk
+endif
+
+# Some vars needed for clean building the package
+PKG := $(CURDIR)/debian/cfengine2
+INST := $(CURDIR)/debian/tmp/usr
+
+defuzz: clean setup
+	egrep -l 'offset|fuzz' stampdir/log/patches/* \
+		| xargs -n1 -r basename | xargs -r debian/defuzz
+
+configure: $(STAMP_DIR)/stamp-configure
+$(STAMP_DIR)/stamp-configure: $(patched)
+	dh_testdir
+	chmod a+x debian/update-id
+	chmod a+x debian/cc
+	debian/update-id $(BUILD_TREE)/src/cf.defs.h
+
+	-test -r /usr/share/misc/config.sub && \
+		cp -f /usr/share/misc/config.sub $(BUILD_TREE)/config.sub
+	-test -r /usr/share/misc/config.guess && \
+		cp -f /usr/share/misc/config.guess $(BUILD_TREE)/config.guess
+
+#	cd $(BUILD_TREE) && autoreconf
+
+	cd $(BUILD_TREE) && ./configure \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--mandir='$${prefix}/share/man' \
+		--infodir='$${prefix}/share/info' \
+		--with-berkeleydb=/usr \
+		--with-openssl=/usr \
+		--with-workdir=/var/lib/cfengine2
+
+	touch $(STAMP_DIR)/stamp-configure
+
+build-arch: $(STAMP_DIR)/stamp-build-arch
+$(STAMP_DIR)/stamp-build-arch: $(patched) $(STAMP_DIR)/stamp-configure
+	dh_testdir
+	cd $(BUILD_TREE) && $(MAKE) all \
+		CFLAGS="$(CFLAGS) $(OPTFLAGS)" CC=$(CC)\
+		INSTALL_STRIP_PROGRAM='$${INSTALL}'
+	touch $(STAMP_DIR)/stamp-build-arch
+
+build-indep: $(STAMP_DIR)/stamp-build-indep
+$(STAMP_DIR)/stamp-build-indep: $(patched) $(STAMP_DIR)/stamp-configure
+	dh_testdir
+	touch $(STAMP_DIR)/stamp-build-indep
+
+build: build-arch
+
+clean:
+	dh_testdir
+	rm -rf $(STAMP_DIR) $(SOURCE_DIR)
+	perl $(SCRIPT_DIR)/dbs_split clean
+	rm -rf debian/tmp
+	dh_clean
+
+install-arch: $(STAMP_DIR)/stamp-build-arch
+	dh_testdir
+	dh_testroot
+	cd $(BUILD_TREE) && $(MAKE) install prefix=$(INST)
+
+install-indep: $(STAMP_DIR)/stamp-build-indep
+	dh_testdir
+	dh_testroot
+	cd $(BUILD_TREE) && $(MAKE) -C inputs install prefix=$(INST)
+
+install: install-arch
+
+binary-cfengine2: DH_OPTIONS = -p cfengine2
+binary-cfengine2:
+	dh_testdir
+	dh_testroot
+	dh_installdirs
+	dh_installchangelogs $(BUILD_TREE)/ChangeLog
+	dh_installdocs
+	chmod -x $(INST)/share/cfengine/*.example
+	dh_installexamples
+	dh_install
+	dh_installman $(BUILD_TREE)/doc/cfengine.8
+	dh_link
+	dh_installdebconf
+	dh_installinit
+	mv $(PKG)/etc/default/cfengine2 $(PKG)/usr/share/cfengine2/default
+	dh_strip #--dbg-package cfengine2-dbg
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_perl
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-indep: build-indep install-indep
+
+binary-arch: build-arch install-arch binary-cfengine2
+
+binary: binary-indep binary-arch
--- cfengine2-2.2.8.orig/debian/changelog
+++ cfengine2-2.2.8/debian/changelog
@@ -0,0 +1,552 @@
+cfengine2 (2.2.8-1~bpo40+1) etch-backports; urgency=low
+
+  * Rebuild for etch.
+  * Build against db4.4.
+
+ -- Morten Werner Forsbring <werner@debian.org>  Mon, 01 Sep 2008 20:27:23 +0200
+
+cfengine2 (2.2.8-1) unstable; urgency=low
+
+  * New upstream release.
+     - Fixes an important threading error that has become apparent with the
+       influx of multicore processors.
+     - Fixes problem with cfengine not sending email's. (Closes: #495710)
+     - Fixes problem with cfservd serving wrong data when link->copy.
+
+ -- Morten Werner Forsbring <werner@debian.org>  Thu, 21 Aug 2008 09:40:37 +0200
+
+cfengine2 (2.2.7-1) unstable; urgency=low
+
+  * New upstream release.
+     - Fixes a memory leak in database access.
+       (Closes: #483632, #483634, #483635)
+     - Removed patches/060_first_address (included upstream).
+  * Debconf translations
+     - Galician translation added by Jacobo Tarrio. (Closes: #484144)
+
+ -- Morten Werner Forsbring <werner@debian.org>  Tue, 17 Jun 2008 10:27:18 +0200
+
+cfengine2 (2.2.6-1) unstable; urgency=medium
+
+  * New upstream release.
+     - Set urgency to medium as this fixes a nasty segfault-bug.
+     - Fixing a segfault-issue introduced in 2.2.4. (Closes: #478247, #473869)
+     - Removing patches/010_dpkg_langC.diff (included upstream).
+  * Added patch from Chun Tian (and upstream SVN) which fixes problem where
+    only the first interface was detected (introduced in 2.2.5).
+  * Including the example-files into the cfengine2 package and removing the
+    cfengine2-doc package. (Closes: #477171)
+
+ -- Morten Werner Forsbring <werner@debian.org>  Mon, 28 Apr 2008 22:59:45 +0200
+
+cfengine2 (2.2.5-1) unstable; urgency=low
+
+  * New upstream release.
+     - Now uses the "first" address of a interface for global.ipv4[ethX],
+       not the last. (Closes: #455743)
+     - Removing patches/011_lockdir_perm.diff (included upstream).
+     - Removing patches/012_package_cfpopen.diff (included upstream).
+  * Removed some documentation stuff from debian/rules as documentation
+    from now is not included in the upstream tarball.
+  * Added a NEWS-file for cfengine2-doc regarding the missing documentation.
+
+ -- Morten Werner Forsbring <werner@debian.org>  Wed, 26 Mar 2008 23:26:48 +0100
+
+cfengine2 (2.2.3-3) unstable; urgency=low
+
+  * Do not create a sed expression for /etc/default/cfengine if debconf
+    answer is empty, and do not run sed with empty expression.
+    (Closes: #332225)
+  * Change from using cfpopen to cfpopen_sh for running apt-cache in
+    DPKGPackageCheck (src/package.c) as we added LANG=C earlier. Thanks to
+    Bas van der Vlies and Elliott A. Johnson for bugreport/patch and
+    follow-up. (Closes: #465586)
+  * Restructured debian/copyright a bit. Thanks to Lintian for reminder.
+  * Restructured prefixnumbers in debian/patches/.
+  * Added patch to fix path's in manpages.
+  * Added patch trying to fix/clarify information about input-files in
+    cfagent- and cfengine-manpages. (Closes: #422749)
+
+ -- Morten Werner Forsbring <werner@debian.org>  Mon, 10 Mar 2008 13:31:24 +0100
+
+cfengine2 (2.2.3-2) unstable; urgency=low
+
+  * Re-added debian/patches/020_lockdir_perm.diff to allow other modes
+    than 755 on /var/lib/cfengine2/, but make sure it is only writeable
+    by root. Thanks to Daniel Parthey for bugreport. (Closes: #318090)
+  * Now using lsb init-functions to print output from init-script. Also
+    added dependency on lsb-base (>= 3.0-6) to the cfengine2-package.
+    Thanks to Petter Reinholdtsen for bugreport. (Closes: #457659)
+  * Add -o option to start-stop-daemon for stop-action in init-script as
+    there is not an error if start-stop-daemon does not have to do
+    anything when stopping daemons.
+
+ -- Morten Werner Forsbring <werner@debian.org>  Sun, 03 Feb 2008 17:37:31 +0100
+
+cfengine2 (2.2.3-1) unstable; urgency=low
+
+  * New upstream release. (Closes: #454090)
+     - fixes segmentation faults when number of arguments supplied is more
+       than 31. Thanks to Ian Patterson for patch. (Closes: #448139)
+  * Bumped Standards-Version to 3.7.3 (no changes).
+
+ -- Morten Werner Forsbring <werner@debian.org>  Thu, 06 Dec 2007 22:05:02 +0100
+
+cfengine2 (2.2.2-1) unstable; urgency=low
+
+  * New upstream release. (Closes: #450820)
+     - Fixes infinite loop when defining multiple classes in DefineClasses.
+       Thanks to Daniel Dehennin for bugreport. (Closes: #441967)
+     - modified debian/patches/010_dpkg_langC.diff
+  * Changed my name in debian/control.
+  * Added Homepage-, Vcs-Browser- and Vcs-Svn-fields to debian/control.
+  * Adjusted debian/watch file to new download-site. Thanks to
+    Raphael Geissert for bugreport. (Closes: #449683)
+
+ -- Morten Werner Forsbring <werner@debian.org>  Sun, 25 Nov 2007 19:38:02 +0100
+
+cfengine2 (2.1.22-2) unstable; urgency=low
+
+  * Switching to db4.6. (Closes: #421932)
+  * Now using LANG=C when running apt-cache- and dpkg-commands. Thanks
+    to Daniel Dehennin for bugreport. (Closes: #440531)
+  * Debconf translations
+     - Portuguese translation added by Rui Branco. (Closes: #425772)
+
+ -- Morten Werner Olsen <werner@debian.org>  Tue, 18 Sep 2007 07:00:43 +0200
+
+cfengine2 (2.1.22-1) unstable; urgency=low
+
+  * New upstream release. (Closes: #390024)
+  * Removing some old directories with unused patches from debian/.
+  * Bumped Standards-Version to 3.7.2 (no changes).
+  * Changed Build-Depends-Indep from tetex-bin to texlive-base-bin.
+  * Fixed a typo in an old changelog-entry to make lintian happy.
+  * Added cfetool-manpage as link to cfengine-manpage.
+  * Debconf translations
+     - German translation updated by Helge Kreutzmann (Closes: #411329)
+
+ -- Morten Werner Olsen <werner@debian.org>  Fri, 20 Apr 2007 07:09:12 +0200
+
+cfengine2 (2.1.20-1) unstable; urgency=low
+
+  * New upstream release.
+     - Packages section does not fail to check if a package is installed
+       when there is no cmp/version specified. (Closes: #358826)
+
+ -- Morten Werner Olsen <werner@debian.org>  Thu,  6 Apr 2006 22:41:29 +0200
+
+cfengine2 (2.1.19p1-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Morten Werner Olsen <werner@debian.org>  Thu, 23 Mar 2006 00:58:18 +0100
+
+cfengine2 (2.1.18-1) unstable; urgency=low
+
+  * New upstream release.
+  * Removed patches/100_fix_ipv6_buffer_overrun (fixed upstream).
+  * LSBize the initscript according to http://wiki.debian.org/LSBInitScripts .
+  * Now doing a restart when init-script is called with force-reload to
+    comply with policy 9.3.2.
+  * Change my email-address in the Uploaders-field. :)
+
+ -- Morten Werner Olsen <werner@debian.org>  Tue, 10 Jan 2006 00:05:22 +0100
+
+cfengine2 (2.1.17-1) unstable; urgency=low
+
+  * New upstream release.
+     - vicf removed from package (Closes: #332432)
+  * Acknowledging NMU and including patches/100_fix_ipv6_buffer_overrun
+    (thanks to Steinar H. Gunderson). (Closes: #334304)
+  * Bumped Standards-Version to 3.6.2 (no changes).
+  * Added dependency to debconf-2.0. (Closes: #331773)
+  * Translations:
+     - Spanish (thanks to CÃ©sar GÃ³mez MartÃ­n). (Closes: #334391)
+     - Swedish (thanks to Daniel Nylander). (Closes: #335716)
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Sun,  4 Dec 2005 11:45:50 +0100
+
+cfengine2 (2.1.15-1.1) unstable; urgency=high
+
+  * Non-maintainer upload, urgency=high since it fixes an RC-bug (which have
+    already propagated to testing, through a binNMU).
+  * Re-created debian/patches directory.
+  * New patch, 100_fix_ipv6_buffer_overrun: Replace "struct sockaddr_in" with
+    "struct sockaddr_storage" in src/proto.c, as it must be able to hold
+    either an IPv4 or an IPv6 address. struct sockaddr_in is smaller than
+    struct sockaddr_in6, which caused buffer overflows when using cfengine
+    over IPv6. (Closes: #334304)
+
+ -- Steinar H. Gunderson <sesse@debian.org>  Fri,  2 Dec 2005 13:47:18 +0100
+
+cfengine2 (2.1.15-1) unstable; urgency=low
+
+  * New upstream release.
+  * Renamed debian/NEWS.Debian to debian/cfengine2.NEWS to make
+    dh_installchangelogs happier. Also bumped the version number to 2.1.15-1 in
+    debian/cfengine2.NEWS to display the NEWS for those who already have the
+    2.1.14-1 installed. Thanks to Thimo Neubauer for bugreport and "patch".
+    Closes: #310749
+  * Translations:
+     * Vietnamese (thanks to Clytie Siddall). Closes: #313331
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Sun, 19 Jun 2005 23:21:46 +0200
+
+cfengine2 (2.1.14-1) unstable; urgency=high
+
+  * New upstream release. Closes: #304487
+     * Added SIGCHLD signal handling in popen.c. Closes: #302363
+     * EmailMaxLines works again. Closes: #301956
+     * Fixes cfagent error with "EndLoop without ForEachLineIn" when
+       ForEachLineIn exits. Closes: #302318
+  * Added debian/NEWS.Debian with information about extra encryption stage
+    added in C5 protocol which makes 2.1.14 cfagent clients unable to talk
+    to older servers.
+  * Now possible to specify arguments to cfservd (thanks to Fabien SEISEN
+    for patch). Closes: #286691
+  * Translations:
+     * Catalan (thanks to Miguel Gea Milvaques). Closes: #290575.
+     * Czech (thanks to Martin Sin). Closes: #304917
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Thu, 28 Apr 2005 08:59:27 +0200
+
+cfengine2 (2.1.13-1) unstable; urgency=medium
+
+  * New upstream release.
+     * Fixes cfagent problem with missing update.conf. Closes: #290943
+  * Removed patches/100_strlcpy_create.
+  * Now compiling with the -D_FILE_OFFSET_BITS=64. Closes: #296870
+  * Changed build-depends from automake1.8 to automake1.9.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Mon, 21 Mar 2005 16:29:15 +0100
+
+cfengine2 (2.1.10-2) unstable; urgency=high
+
+  * Rolled back -Q patches. They're a great idea but on refelction probably
+    shouldn't be in Debian if they're not upstream. Closes: #271735
+
+ -- Andrew Stribblehill <ads@debian.org>  Tue, 12 Oct 2004 10:31:22 +0100
+
+cfengine2 (2.1.10-1.1) unstable; urgency=high
+
+  * Approved Non-maintainer upload.
+  * Fix release-critical bug: "cfagent -Q sysadm fails, causing cfexecd to
+    fail". Thanks to Bas van der Vlies for fixing the 110_cfagent_Q patch,
+    closes: #271735.
+
+ -- Stephen Quinney <stephen@jadevine.org.uk>  Tue, 28 Sep 2004 11:55:27 +0100
+
+cfengine2 (2.1.10-1) unstable; urgency=medium
+
+  * New upstream version.
+  * Set urgency=medium as there are several bugfixes in this release that
+    we want in sarge.
+  * Removed the patches 100_prototypes_variables and 110_snprintf_dont
+    (already included upstream).
+  * Included the patch 110_cfagent_Q which makes it possible to query cfagent
+    for variables. Thanks Bas van der Vlies.
+  * Included the patch 120_cfexecd_Q which makes us use the new functionality
+    from 110_cfagent_Q and let us set the smtpfrom-variable.
+    Thanks Bas van der Vlies.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Fri, 27 Aug 2004 15:46:44 +0200
+
+cfengine2 (2.1.9-2) unstable; urgency=low
+
+  * More restructuring of debian/rules to make the buildd's happy:
+    * Removed {build,install}-indep from the build and install targets.
+    * Removed the binary-finish target and moved its contents to
+      binary-cfengine2 and binary-cfengine2-doc.
+    * Temporary removing cfengine.el until it get it's own -elisp package.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Thu, 12 Aug 2004 12:05:02 +0200
+
+cfengine2 (2.1.9-1) unstable; urgency=low
+
+  * New upstream version.
+    Fixes problem with trusted keys written to the disk in a file named
+    ".pub" instead of the "<user>-<ip>.pub" naming expected when
+    cfagent/cfservd are looking for files.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Tue, 10 Aug 2004 12:38:57 +0200
+
+cfengine2 (2.1.8-2) unstable; urgency=low
+
+  * Restructuring debian/rules. Closes: #264469
+    * Removed the --with-docs option to ./configure.
+    * Split the build target into build-arch and build-indep.
+    * Split the install target into install-arch and install-indep.
+    * Added dependency to build-{arch,indep} for install{arch,indep}.
+    * Started building the docs manually.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Mon,  9 Aug 2004 13:30:47 +0200
+
+cfengine2 (2.1.8-1) unstable; urgency=low
+
+  * New upstream version.
+  * The "Remove -dbg" release. The package is waiting so long for ftpmasters
+    that I'm worried about it failing to enter sarge if it takes any longer.
+
+ -- Andrew Stribblehill <ads@debian.org>  Sun,  8 Aug 2004 11:20:56 +0100
+
+cfengine2 (2.1.7p1-1) unstable; urgency=low
+
+  * New upstream version.
+  * Bumped Standards-Version to 3.6.1.
+  * Added myself as uploader.
+
+ -- Morten Werner Olsen <werner@skolelinux.no>  Thu,  8 Jul 2004 10:58:54 +0200
+
+cfengine2 (2.1.6-1) unstable; urgency=low
+
+  * New upstream version. Closes: #234776. Also fixes:
+    * "Bad values of special variables". Closes: #252669
+    * do.c contains implicit pointer conversion. Closes: #226535
+  * Add de, ja, tr debconf translations. Closes: #223104, #227296, #252936
+  * Minor corrections to pt_BR debconf translation. Closes: #256944
+  * Use ccache if possible, using trivial cc wrapper in debian/cc.
+
+ -- Andrew Stribblehill <ads@debian.org>  Mon,  5 Jul 2004 16:01:29 +0100
+
+cfengine2 (2.0.9+2.1.0b5-2) unstable; urgency=low
+
+  * Add an explanatory note to the preinst, for the case that a genuine
+    directory /var/lib/cfengine2/bin/ exists and has content, to require
+    the user to check it and delete it before trying again.
+
+ -- Andrew Stribblehill <ads@debian.org>  Thu, 16 Oct 2003 14:25:14 +0100
+
+cfengine2 (2.0.9+2.1.0b5-1) unstable; urgency=low
+
+  * New upstream version.
+  * Symlink /var/lib/cfengine2/bin to /usr/sbin for cfexecd.
+    Closes: Bug#214323
+  * Don't create /var/lib/cfengine2/ppkeys in postinst; let cfkey
+    make it so it gets the permissions right.
+    Closes: Bug#214730, #214764, #214874
+  * Set the permissions for the lock directory to go-w rather than explicitly
+    0755. (Patch from Daniel Parthey).
+    Closes: Bug#215910
+  * Allow variable expansion in admit/grant entries to
+    cfservd.conf. (Patch from Kevin Squire).
+    Closes: Bug#214971
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed, 15 Oct 2003 16:54:31 +0100
+
+cfengine2 (2.0.9+2.1.0b3-1) unstable; urgency=high
+
+  * New upstream version with security fix for cfservd. See
+    http://mail.gnu.org/archive/html/bug-cfengine/2003-09/msg00013.html.
+    Closes: Bug#212891.
+
+ -- Andrew Stribblehill <ads@debian.org>  Mon, 29 Sep 2003 09:55:18 +0100
+
+cfengine2 (2.0.7p3-7) unstable; urgency=low
+
+  * Add Dutch debconf translations. (Closes: Bug#204913)
+  * Fix input-file finding in all cases.
+  * Add -Q (query) mode. Usage (eg): cfagent -Q smtpserver,sysadm
+
+ -- Andrew Stribblehill <ads@debian.org>  Mon,  1 Sep 2003 09:13:38 +0100
+
+cfengine2 (2.0.7p3-6) unstable; urgency=low
+
+  * 0_cfagent_02_psfilter had an out-by-one error; Bas van der Vlies
+    found it and sent me the patch, to my eternal gratitude :)
+    Closes: Bug#203754
+
+ -- Andrew Stribblehill <ads@debian.org>  Fri,  1 Aug 2003 13:45:56 +0100
+
+cfengine2 (2.0.7p3-5) unstable; urgency=low
+
+  * Cfagent: Look in $WORKDIR/state/ for env_data
+    file. (0_cfagent_03_state_filename; Closes: Bug#202775)
+
+ -- Andrew Stribblehill <ads@debian.org>  Fri, 25 Jul 2003 14:41:32 +0100
+
+cfengine2 (2.0.7p3-4) unstable; urgency=low
+
+  * Exit fatally if we can't seed from the entropy pool.
+    (0_cfagent_01_rand).
+  * Fix segmentation fault with some ps outputs when process filters
+    are used. (0_cfagent_02_psfilter).
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed, 16 Jul 2003 18:14:54 +0100
+
+cfengine2 (2.0.7p3-3) unstable; urgency=low
+
+  * Look for cf.preconf in the right place. (0_cfagent_00_preconf)
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed,  2 Jul 2003 12:30:11 +0100
+
+cfengine2 (2.0.7p3-2) unstable; urgency=low
+
+  * Rename debian/README to debian/README.Debian so it actually gets
+    distributed (*blush* Thanks Jonas Smedegaard! Closes: Bug#195657)
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed,  4 Jun 2003 22:50:20 +0100
+
+cfengine2 (2.0.7p3-1) unstable; urgency=low
+
+  * New upstream ver. 0_editfiles_00_install_dig rolled in.
+
+ -- Andrew Stribblehill <ads@debian.org>  Fri, 23 May 2003 12:24:52 +0100
+
+cfengine2 (2.0.6-2) unstable; urgency=low
+
+  * Make DefineInGroup classes installable. (0_editfiles_00_install_dig)
+
+ -- Andrew Stribblehill <ads@debian.org>  Tue, 13 May 2003 12:32:50 +0100
+
+cfengine2 (2.0.6-1) unstable; urgency=low
+
+  * New upstream version.
+  * Update packaging to use the newer gettext-based debconf template
+    translation system. Thanks Andre Luis Lope. (Closes: #187797)
+
+ -- Andrew Stribblehill <ads@debian.org>  Mon, 14 Apr 2003 09:30:42 +0100
+
+cfengine2 (2.0.5+2.0.6b1-1) unstable; urgency=low
+
+  * Actually version 2.0.6b1. New upstream release.
+  * Most patches rolled in, leaving just:
+      0_cfenvd_00_ps_skiphead
+      0_editfiles_00_definegroup
+      0_edittools_00_brk_empty
+      0_snprintf_00_dont
+  * Backed out 0_cfexecd_01_file
+
+ -- Andrew Stribblehill <ads@debian.org>  Fri, 21 Mar 2003 11:51:33 +0000
+
+cfengine2 (2.0.5final-5) unstable; urgency=low
+
+  * Add a README.Debian documenting the differences between the official
+    Cfengine package and the Debian version.
+  * 0_process_00_reportkill: Backport a fix from src-mirror that stops Cfagent
+    erroneously reporting signals it will never make.
+  * 0_snprintf_00_dont: Only compile snprintf if HAVE_SNPRINTF not defined
+    by src/conf.h.
+  * 0_cfexecd_01_file: Pass '-f <filename>' to cfagent if given.
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed, 19 Mar 2003 10:17:48 +0000
+
+cfengine2 (2.0.5final-4) unstable; urgency=low
+
+  * 0_cfagent_02_preconf: make cfagent seek cf.preconf in WORKDIR
+    (/etc/cfengine for Debian) rather than the CWD if $CFINPUTS is
+    undefined.
+  * 0_cfrun_00_workdir: same for cfrun.hosts.
+  * 0_item_01_iprange: Let IPRange(a.b.c-d) match properly.
+  * Graffiti over the version output to state Debian package.
+
+ -- Andrew Stribblehill <ads@debian.org>  Thu,  6 Mar 2003 12:29:45 +0000
+
+cfengine2 (2.0.5final-3) unreleased; urgency=low
+
+  * A little clarification about the previous release (2.0.5final-2). The
+    patch (0_cfservd_00_sec) stops hosts which were in the DynamicAdresses
+    list from having implicit access to all files.
+  * Add undocumented experimental DefineInGroup feature to editfiles. If
+    you want to see how it works, look in the mailing-list or at patch
+    0_editfiles_00_definegroup.
+  * Add undocumented experimental EmailMaxLines special variable. If you
+    set it to a number or "inf", cfexecd limits its emails to this number
+    of lines of cfagent output.
+
+ -- Andrew Stribblehill <ads@debian.org>  Thu, 27 Feb 2003 11:06:21 +0000
+
+cfengine2 (2.0.5final-2) unstable; urgency=low
+
+  * Security fix from Upstream. Thanks to Manon Goo <manon@manon.de>
+    for isolating the patch.
+
+ -- Andrew Stribblehill <ads@debian.org>  Mon, 24 Feb 2003 16:15:39 +0000
+
+cfengine2 (2.0.5final-1) unstable; urgency=low
+
+  * New upstream version:
+    * Most Debian patches rolled in, leaving only
+      (renamed): 0_cfagent_00_location, 0_cfdoc_00_shebang and
+      0_cfservd_00_reload.
+    * Fix syslog prefixes. (closes: #168054)
+  * Make info docs work properly. Now cfengine2-doc conflicts with
+    cfengine-doc. Move examples into -doc package.
+  * Clear TrustKeysFrom list on cfservd config-file reload.
+    (0_cfservd_00_reload)
+  * Clear macro definitions between the 'update' pass and the main one.
+    (0_cfagent_01_env_time)
+  * Separate binary-indep from binary-arch. (closes: #181454)
+
+ -- Andrew Stribblehill <ads@debian.org>  Tue, 18 Feb 2003 13:32:12 +0000
+
+cfengine2 (2.0.5b1-1) unstable; urgency=low
+
+  * New upstream version.
+  * Add an init script. Add a set of medium-priority debconf questions
+    asking which daemons to start (closes: #148584).
+  * Patch 30_daemon_close_fds: devnull std{in,out,err} and close all other
+    file descriptors for each daemon. cfservd: 30_cfservd_fd_leak.patch:
+    Close-on-exec of listening socket (closes: #168020).
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed,  5 Feb 2003 10:59:52 +0000
+
+cfengine2 (2.0.4-2) unstable; urgency=low
+
+  * Comment out dh_installcron no-op.
+  * Compile with debugging symbols as default, as per latest Policy.
+
+ -- Andrew Stribblehill <ads@debian.org>  Wed, 23 Oct 2002 09:36:13 +0100
+
+cfengine2 (2.0.4-1) unstable; urgency=low
+
+  * New maintainer.
+  * New upstream version. (closes: #152673, #160617)
+  * Remove empty /usr/share/cfengine2/examples/doc directory.
+  * Fix header line for cfdoc.
+  * Add symlinks for manpages.
+  * Build-depend on openssl. (closes: #164777)
+
+ -- Andrew Stribblehill <ads@debian.org>  Tue, 22 Oct 2002 15:52:22 +0100
+
+cfengine2 (2.0.1-6) unstable; urgency=low
+
+  * Add Build-Dep on autotools-dev and add the autoupdate
+    config.{sub,guess} stuff from autotools-dev.  (closes: #147669)
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Tue, 21 May 2002 18:03:06 +0200
+
+cfengine2 (2.0.1-5) unstable; urgency=high
+
+  * Fix build-deps (closes: #147498)
+  * Apply patch from Bas van der Vlies in 147635 which fixes a security
+    hole.  (this patch is against cfengine 1 as well, will close the bug
+    there)
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Tue, 21 May 2002 15:21:08 +0200
+
+cfengine2 (2.0.1-4) unstable; urgency=low
+
+  * Reupload with source.  Will I ever learn?
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Sun, 28 Apr 2002 11:23:39 +0200
+
+cfengine2 (2.0.1-3) unstable; urgency=low
+
+  * Add note from upstream which allows linking with OpenSSL
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Sat, 27 Apr 2002 22:56:02 +0200
+
+cfengine2 (2.0.1-2) unstable; urgency=low
+
+  * run cfkey in postinst
+  * patch so that cfagent is in /usr/sbin and not /var/lib/cfengine/bin.
+    Thanks to Michael Alan Dorman for pointing this out.
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Thu, 25 Apr 2002 01:17:35 +0200
+
+cfengine2 (2.0.1-1) unstable; urgency=low
+
+  * Initial release (closes: #136454, #118726)
+
+ -- Tollef Fog Heen <tfheen@debian.org>  Tue, 19 Mar 2002 17:27:47 +0100
--- cfengine2-2.2.8.orig/debian/watch
+++ cfengine2-2.2.8/debian/watch
@@ -0,0 +1,2 @@
+version=2
+http://www.cfengine.org/downloads/cfengine-(.*).tar.gz debian uupdate
--- cfengine2-2.2.8.orig/debian/README.Debian
+++ cfengine2-2.2.8/debian/README.Debian
@@ -0,0 +1,4 @@
+The Cfagent commands have been moved to /usr/sbin. Whenever the Info
+documents refer to $(workdir)/bin, you should treat it as meaning /usr/sbin.
+
+ -- 2003-03-10 Andrew Stribblehill <ads@debian.org>
--- cfengine2-2.2.8.orig/debian/defuzz
+++ cfengine2-2.2.8/debian/defuzz
@@ -0,0 +1,23 @@
+#! /bin/sh
+#
+# defuzz: apply patches (with fuzz?) then update them
+
+set -e
+
+TMP=${TMP-/tmp}; export TMP
+retval=0
+
+for patch in "$@"; do
+	echo "** De-fuzzing $patch **"
+	patchfile="debian/patches/$patch"
+	test -f "$patchfile" || {
+		echo "Patch $patch not found" >&2
+		retval=1
+		continue
+	}
+	dbs-edit-patch "$patch"
+	"$TMP/$patch/dbs-update-patch"
+	rm -r "$TMP/$patch"
+done
+
+exit $retval
--- cfengine2-2.2.8.orig/debian/control
+++ cfengine2-2.2.8/debian/control
@@ -0,0 +1,26 @@
+Source: cfengine2
+Section: admin
+Priority: optional
+Maintainer: Andrew Stribblehill <ads@debian.org>
+Uploaders: Morten Werner Forsbring <werner@debian.org>
+Build-Depends: bison, debhelper (>= 4.1.76), flex, libdb4.4-dev, openssl, libssl-dev, perl, dbs, autotools-dev, autoconf, automake1.9
+Build-Conflicts: automake1.4
+Standards-Version: 3.7.3
+Homepage: http://www.cfengine.org/
+Vcs-Browser: http://svn.iu.hio.no/viewvc/trunk/?root=Cfengine-2
+Vcs-Svn: https://svn.iu.hio.no/projects/cfengine-2/trunk
+
+Package: cfengine2
+Architecture: any
+Depends: ${shlibs:Depends}, ${perl:Depends}, debianutils (>= 1.7), debconf (>= 1.2.9) | debconf-2.0, lsb-base (>= 3.0-6)
+Conflicts: cfengine
+Replaces: cfengine2-doc
+Section: admin
+Description: Tool for configuring and maintaining network machines
+ The main purpose of cfengine is to allow the system administrator
+ to create a single central file which will define how every host
+ on a network should be configured.
+ .
+ It takes a while to set up cfengine for a network (especially an
+ already existing network), but once that is done you will wonder
+ how you ever lived without it!
--- cfengine2-2.2.8.orig/debian/cfengine2.config
+++ cfengine2-2.2.8/debian/cfengine2.config
@@ -0,0 +1,33 @@
+#! /bin/sh
+
+set -e
+
+# Source debconf library
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+DEFAULT=/etc/default/cfengine2
+
+zeroone_to_falsetrue () {
+    # Converts 1 to 'true' and 0 to 'false'
+    case "$1" in
+	0) echo "false";;
+	1) echo "true";;
+	*) return 1
+    esac
+}
+
+if [ -e $DEFAULT ]; then
+    . $DEFAULT || true
+
+    db_set cfengine2/run_cfservd $(zeroone_to_falsetrue $RUN_CFSERVD)
+    db_set cfengine2/run_cfexecd $(zeroone_to_falsetrue $RUN_CFEXECD)
+    db_set cfengine2/run_cfenvd $(zeroone_to_falsetrue $RUN_CFENVD)
+fi
+
+db_input medium cfengine2/run_cfservd || true
+db_input medium cfengine2/run_cfexecd || true
+db_input medium cfengine2/run_cfenvd || true
+
+db_go || true
+db_stop || true
