--- cfengine2-2.2.10.orig/debian/preinst +++ cfengine2-2.2.10/debian/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 <&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.10.orig/debian/postinst +++ cfengine2-2.2.10/debian/postinst @@ -0,0 +1,109 @@ +#! /bin/sh + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# 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.10.orig/debian/rules +++ cfengine2-2.2.10/debian/rules @@ -0,0 +1,111 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) +CROSS= --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +else +CROSS= --build $(DEB_BUILD_GNU_TYPE) +endif + +include /usr/share/quilt/quilt.make + +config.status: configure +configure: config-stamp + +config-stamp: $(QUILT_STAMPFN) + dh_testdir + autoreconf -vfi + # Add here commands to configure the package. +ifneq "$(wildcard /usr/share/misc/config.sub)" "" + cp -f /usr/share/misc/config.sub config.sub +endif +ifneq "$(wildcard /usr/share/misc/config.guess)" "" + cp -f /usr/share/misc/config.guess config.guess +endif + ./configure $(CROSS) --sysconfdir=/etc --with-workdir=/var/lib/cfengine2 --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-docs CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/cfengine2.sgml > cfengine2.1 + + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp + debconf-updatepo + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + rm -f config.sub config.guess + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the package into debian/cfengine. + $(MAKE) DESTDIR=$(CURDIR)/debian/cfengine2 install + +# Build architecture-independent files here. +binary-indep: install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# remove the examples so they don't get installed again + rm -rf $(CURDIR)/debian/cfengine2/usr/share/cfengine/ +# dh_install +# dh_installmenu + dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python + dh_installinit +# dh_installcron + dh_installinfo + dh_installman + dh_link + dh_strip --dbg-package=cfengine2-dbg + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- cfengine2-2.2.10.orig/debian/copyright +++ cfengine2-2.2.10/debian/copyright @@ -0,0 +1,42 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Mark Burgess +Upstream-Source: http://www.cfengine.org/downloads/ +Upstream-Name: cfengine + +Files: * +Copyright: 1995, Free Software Foundation, Inc. +License: GPL-2+ | other + +Files: contrib/cfdoc +Copyright: 1995, Andrew Ford andrew@icarus.demon.co.uk +License: GPL-2+ + +Files: contrib/cfengine.el +Copyright: 1997, Rolf Ebert +License: GPL-2+ + +Files: debian/* +Copyright: Andrew Stribblehill + Morten Werner Forsbring + 2009, Antonio Radici +License: GPL-2+ + +License: GPL-2+ + 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; version 2 dated June, 1991 or (at your + option) any later version + + On Debian GNU/Linux systems, the complete text of version 2 of the GNU + General Public License can be found in `/usr/share/common-licenses/GPL-2' + + In addition, as a special exception, the author of this program gives + permission to link the code of its release with the OpenSSL project's + "OpenSSL" library (or with modified versions of it that use the same + license as the "OpenSSL" library), and distribute the linked executables. + You must obey the GNU General Public License in all respects for all of + the code used other than "OpenSSL". If you modify this file, you may + extend this exception to your version of the file, but you are not + obligated to do so. If you do not wish to do so, delete this exception + statement from your version. --- cfengine2-2.2.10.orig/debian/clean +++ cfengine2-2.2.10/debian/clean @@ -0,0 +1,22 @@ +INSTALL +Makefile.in +contrib/Makefile.in +inputs/Makefile.in +pub/Makefile.in +src/Makefile.in +doc/Makefile.in +doc/mdate-sh +doc/texinfo.tex +aclocal.m4 +configure +ltmain.sh +install-sh +depcomp +ylwrap +missing +mkinstalldirs +src/cflex.[cl] +src/cfparse.[ch] +doc/stamp-vti +doc/version1.texi +src/conf.h.in --- cfengine2-2.2.10.orig/debian/README.source +++ cfengine2-2.2.10/debian/README.source @@ -0,0 +1,57 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +To configure quilt to use debian/patches instead of patches, you want +either to export QUILT_PATCHES=debian/patches in your environment +or use this snippet in your ~/.quiltrc: + + for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do + if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then + export QUILT_PATCHES=debian/patches + fi + done + +To get the fully patched source after unpacking the source package, cd to +the root level of the source package and run: + + quilt push -a + +The last patch listed in debian/patches/series will become the current +patch. + +To add a new set of changes, first run quilt push -a, and then run: + + quilt new + +where is a descriptive name for the patch, used as the filename in +debian/patches. Then, for every file that will be modified by this patch, +run: + + quilt add + +before editing those files. You must tell quilt with quilt add what files +will be part of the patch before making changes or quilt will not work +properly. After editing the files, run: + + quilt refresh + +to save the results as a patch. + +Alternately, if you already have an external patch and you just want to +add it to the build system, run quilt push -a and then: + + quilt import -P /path/to/patch + quilt push -a + +(add -p 0 to quilt import if needed). as above is the filename to +use in debian/patches. The last quilt push -a will apply the patch to +make sure it works properly. + +To remove an existing patch from the list of patches that will be applied, +run: + + quilt delete + +You may need to run quilt pop -a to unapply patches first before running +this command. --- cfengine2-2.2.10.orig/debian/init.d +++ cfengine2-2.2.10/debian/init.d @@ -0,0 +1,146 @@ +#! /bin/sh +# +### BEGIN INIT INFO +# Provides: cfengine2 +# Required-Start: $remote_fs $network $time $syslog +# Required-Stop: $remote_fs $network $syslog +# 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 [] + # where 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.10.orig/debian/control +++ cfengine2-2.2.10/debian/control @@ -0,0 +1,38 @@ +Source: cfengine2 +Section: admin +Priority: optional +Maintainer: Antonio Radici +Build-Depends: debhelper (>= 7), autotools-dev, autoconf, automake, + libtool, bison, flex, libdb-dev, libssl-dev, po-debconf, texinfo, + quilt +Standards-Version: 3.8.3 +Vcs-Browser: http://git.debian.org/?p=collab-maint/cfengine2.git +Vcs-Git: git://git.debian.org/git/collab-maint/cfengine2.git +DM-Upload-Allowed: yes +Homepage: http://www.cfengine.org/ + +Package: cfengine2 +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: cfengine +Replaces: cfengine2-doc +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! + +Package: cfengine2-dbg +Architecture: any +Section: debug +Priority: extra +Depends: cfengine2 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} +Description: debugging symbols for cfengine2 + 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. + . + This package contains the debugging symbols for cfengine2. --- cfengine2-2.2.10.orig/debian/changelog +++ cfengine2-2.2.10/debian/changelog @@ -0,0 +1,625 @@ +cfengine2 (2.2.10-2) unstable; urgency=low + + * Added the russian debconf template translation (Closes: 536403) + * debian/control: + + Standards-Version bumped to 3.8.3 + * debian/patches; + + kfreebsd-configure: so cfengine2 builds on GNU/kFreeBSD (Closes: 537887) + * debian/init.d: added $syslog dependency (Closes: 541494) + * debian/watch: file updated to reflect the new upstream URL + + -- Antonio Radici Sun, 30 Aug 2009 11:28:02 +0100 + +cfengine2 (2.2.10-1) unstable; urgency=low + + * New upstream release (Closes: #533085) + * debian/control: added DM-Upload-Allowed: yes + * debian/info: removing cfengine-Anomalies.info because it is not + distributed by upstream anymore + * debian/clean: adding doc/stamp-vti, doc/version1.texi, src/conf.h.in + which are autogenerated + + -- Antonio Radici Sun, 14 Jun 2009 19:11:48 +0100 + +cfengine2 (2.2.9-3) unstable; urgency=low + + * debian/patches/admit-noclass-520696.patch + + when admit: contains multiple hostnames and the class does + not exist, cfengine will fail (Closes: 520696) + * debian/patches/511666-segfault.patch + + fix a bug involving CheckFriendReliability (Closes: 482439) + * debian/po/bg.po: + + bulgarian translation by dmn@debian.org (Closes: 518445) + * debian/control: + + Standards-Version updated to 3.8.1 + + cfengine2-dbg section is now debug - extra + + -- Antonio Radici Wed, 13 May 2009 00:01:36 +0100 + +cfengine2 (2.2.9-2) unstable; urgency=low + + * debian/rules + + ./configure --with-workdir and --sysconfdir from 2.2.8 (Closes: #518352) + + added the dbg package building to dh_strip + * debian/control + + added the dbg package + + -- Antonio Radici Thu, 05 Mar 2009 22:15:44 +0000 + +cfengine2 (2.2.9-1) unstable; urgency=low + + * New maintainer (Closes: #452352) + * New upstream version + + dpkg package removal fixed (Closes: #506732) + * debian/rules + + repackaged using debhelper 7 + + added quilt.make for patches + * debian/control: + + new Vcs-Git and Vcs-Browser + + added only the needed dependencies to Build-Depends and Depends + + Standards-Version bumped to 3.8.0 + * debian/watch: + + checking only for cfengine-2.* versions + * debian/patches: + + add-missing-manpages.patch: add manpage for cfdoc + * (Closes: #366819) + + build-only-info.patch: doc/ builds only the info files + + fix-hyphens-in-manpages.patch: minus signs to be used as such + + fix-install-perms.patch: strip install perms on examples + + fix-manpages-paths.patch: same as 2.2.8-1, fix a manpath in cfengine.8 + + fix-man-sections.patch: all man sections are 8 + + fix-whatis-entries.patch: fix the whatis entries for cfetool* manpages + * debian/copyright: + + switching to the new format, cleaner + + all copyrights are now correct + * debian/README.source: about how to use quilt + * debian/cfengine2.(postinst|preinst|postrm): + + "cfengine2." stripped from the filenames + + -- Antonio Radici Tue, 10 Feb 2009 23:36:07 +0000 + +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 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 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 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 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 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 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 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 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 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 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 Thu, 6 Apr 2006 22:41:29 +0200 + +cfengine2 (2.1.19p1-1) unstable; urgency=low + + * New upstream release. + + -- Morten Werner Olsen 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 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 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 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 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 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 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 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 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 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 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 "-.pub" naming expected when + cfagent/cfservd are looking for files. + + -- Morten Werner Olsen 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 ' to cfagent if given. + + -- Andrew Stribblehill 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 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 Thu, 27 Feb 2003 11:06:21 +0000 + +cfengine2 (2.0.5final-2) unstable; urgency=low + + * Security fix from Upstream. Thanks to Manon Goo + for isolating the patch. + + -- Andrew Stribblehill 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 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 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 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 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 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 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 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 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 Thu, 25 Apr 2002 01:17:35 +0200 + +cfengine2 (2.0.1-1) unstable; urgency=low + + * Initial release (closes: #136454, #118726) + + -- Tollef Fog Heen Tue, 19 Mar 2002 17:27:47 +0100 --- cfengine2-2.2.10.orig/debian/dirs +++ cfengine2-2.2.10/debian/dirs @@ -0,0 +1 @@ +usr/sbin --- cfengine2-2.2.10.orig/debian/docs +++ cfengine2-2.2.10/debian/docs @@ -0,0 +1,2 @@ +README +TODO --- cfengine2-2.2.10.orig/debian/cfengine2.links +++ cfengine2-2.2.10/debian/cfengine2.links @@ -0,0 +1,2 @@ +etc/cfengine var/lib/cfengine2/inputs +usr/sbin var/lib/cfengine2/bin --- cfengine2-2.2.10.orig/debian/cfengine2.templates +++ cfengine2-2.2.10/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.10.orig/debian/postrm +++ cfengine2-2.2.10/debian/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.10.orig/debian/examples +++ cfengine2-2.2.10/debian/examples @@ -0,0 +1 @@ +debian/cfengine2/usr/share/cfengine/*.example --- cfengine2-2.2.10.orig/debian/watch +++ cfengine2-2.2.10/debian/watch @@ -0,0 +1,9 @@ +# Compulsory line, this is a version 3 file +version=3 + +# usually the cfengine maintainer releases versions like x.x.xb7 or x.x.xa4 +# *before* the official version, which does not contain any letter, so we need +# to adapt our version otherwise uscan will believe, for example, that 2.0.2 is +# older than 2.0.2b3 +opts="uversionmangle=s/([a-z]\d)/~$1/i" \ +http://www.cfengine.org/pages/downloads /tarballs/cfengine-(2.*)\.tar\.gz --- cfengine2-2.2.10.orig/debian/cfengine2.config +++ cfengine2-2.2.10/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 --- cfengine2-2.2.10.orig/debian/info +++ cfengine2-2.2.10/debian/info @@ -0,0 +1,4 @@ +doc/cfengine-Tutorial.info +doc/cfengine-Reference.info-1 +doc/cfengine-Reference.info-2 +doc/cfengine-Reference.info --- cfengine2-2.2.10.orig/debian/cfengine2.default +++ cfengine2-2.2.10/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.10.orig/debian/cfengine2.NEWS +++ cfengine2-2.2.10/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 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 Thu, 19 Jun 2005 22:59:27 +0200 + --- cfengine2-2.2.10.orig/debian/compat +++ cfengine2-2.2.10/debian/compat @@ -0,0 +1 @@ +7 --- cfengine2-2.2.10.orig/debian/po/bg.po +++ cfengine2-2.2.10/debian/po/bg.po @@ -0,0 +1,82 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Damyan Ivanov , 2009. +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2009-03-06 08:51+0200\n" +"Last-Translator: Damyan Ivanov \n" +"Language-Team: Bulgarian \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 +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Стартиране на cfexecd при зареждане на системата?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "cfexecd е диспечер, прериодично изпълняващ cfagent — програмата, която върши работата." + +#. 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 "Това не е необходимо ако предпочитате да изпълнявате cfagent на ръка или чрез cron." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Стартиране на cfservd при зареждане на системата?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd отговаря за сервирането на файлове към отдалечените 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 "Предлага и възможност на отдалечените хостове да изискват стартирането на cfagent (след оторизация)." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Стартиране на cfenvd при зареждане на системата?" + +#. 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 наблюдава някои параметри на системата (използвано дисково пространство, активни процеси и т.н.) и изчислява средните стойности и отклоненията." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "Събраната информация е достъпна за cfagent и може да се използва от cfenvgraph." + --- cfengine2-2.2.10.orig/debian/po/POTFILES.in +++ cfengine2-2.2.10/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] cfengine2.templates --- cfengine2-2.2.10.orig/debian/po/sv.po +++ cfengine2-2.2.10/debian/po/sv.po @@ -0,0 +1,101 @@ +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2005-10-25 17:21+0100\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" +"X-Poedit-Language: swed\n" +"X-Poedit-Country: swed\n" +"X-Poedit-SourceCharset: iso-8859-1\n" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Starta cfexecd vid systemets uppstart?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" +"cfexecd r en schemalggare som regelbundet kr cfagent, programmet som " +"faktiskt gr jobbet." + +#. 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 "" +"Om du startar cfagent manuellt eller vljer att kra det frn cron istllet " +"behver du inte krva detta." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Starta cfservd vid systemets uppstart?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd hanterar filtjnsten fr cfagent-processer p fjrrsystem." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "" +"It also provides a facility for remote hosts (after authenticating) to ask " +"cfservd to run cfagent." +msgstr "" +"Den ger ocks en mjligheten fr fjrrsystem (efter autentisering) att frga " +"cfservd att kra cfagent." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Starta cfenvd vid systemets uppstart?" + +#. 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 undersker systemets milj (diskanvndning, kr klngder etc) och " +"noterar anvndning och standardavvikelser fr dessa." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"Information som samlas in hr r ltt tillgnglig fr cfagent och kan hmtas " +"ut med cfenvgraph." --- cfengine2-2.2.10.orig/debian/po/ru.po +++ cfengine2-2.2.10/debian/po/ru.po @@ -0,0 +1,92 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2009. +msgid "" +msgstr "" +"Project-Id-Version: cfengine2 2.2.10-1\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2009-07-02 20:45+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \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" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Запускать cfexecd при включении компьютера?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" +"cfexecd -- это планировщик, который периодически запускает " +"cfagent -- программу, которая на самом деле выполняется всю работу." + +#. 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 "Если вы запускаете cfagent вручную или из cron, ответьте отрицательно." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Запускать cfservd при включении компьютера?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd выполняет операции с файлами для удалённых процессов 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 "" +"Также он позволяет удалённым хостам (после аутентификации) " +"запросить cfservd запуск cfagent." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Запускать cfenvd при включении компьютера?" + +#. 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 следит за системным окружением (использование диска, длина очереди " +"выполнения и т.д.) и отмечает среднее и стандартное отклонение каждого " +"параметра." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"Собранная информация легко доступна cfagent, и может быть показана " +"с помощью cfenvgraph." + --- cfengine2-2.2.10.orig/debian/po/pt_BR.po +++ cfengine2-2.2.10/debian/po/pt_BR.po @@ -0,0 +1,98 @@ +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2004-06-29 22:10-0300\n" +"Last-Translator: Andr Lus Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Iniciar o cfexecd no tempo de inicializao ?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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." + +#. 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 "" +"Caso voc inoque o cfagent manualmente ou opte por execut-lo a partir do " +"cron voc no precisar disso." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Iniciar o cfservd em tempo de inicializao ?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "O cfservd gerencia servir arquivos para processos cfagent remotos." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "" +"It also provides a facility for remote hosts (after authenticating) to ask " +"cfservd to run cfagent." +msgstr "" +"O cfservd tambm fornece uma facilidade para hosts remotos (depois de " +"autenticados) requisitarem ao cfservd a execuo do cfagent." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Iniciar o cfenvd em tempo de inicializao ?" + +#. 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 "" +"O cfenvd monitora o ambiente de sistema (uso de disco, tamanho da fila de " +"execuo, etc.) e nota o desvio mdio e padro para cada um deles." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"A informao obtida aqui facilmente disponibilizvel para o cfagent e pode " +"ser consultada atravs do uso do cfenvgraph." --- cfengine2-2.2.10.orig/debian/po/ja.po +++ cfengine2-2.2.10/debian/po/ja.po @@ -0,0 +1,98 @@ +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2003-12-23 00:07+0900\n" +"Last-Translator: Hideki Yamane \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 +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "ƥ൯ư cfexecd ưޤ?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" +"cfexecd ϡºݤưԤ cfagent Ū˵ư륹塼Ǥ" + +#. 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 "" +"ưޤ cron cfagent ư硢פ" +"" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "ƥ൯ư cfservd ưޤ?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd ϥ⡼Ȥ 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 "" +"ϥ⡼ȥۥȤФ (ǧڸ) cfagent ư뤫ɤ " +"cfservd ˳ǧ뵡ǽ󶡤ޤ" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "ƥ൯ư cfenvd ưޤ?" + +#. 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 ϥƥưĶ (ǥλ̤ run queue Ĺʤ) ƻ" +"줾ͤɸкϿޤ" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"Ǽưפ cfagent ѤǤcfenvgraph Ѥƽϲǽ" +"Ǥ" --- cfengine2-2.2.10.orig/debian/po/fr.po +++ cfengine2-2.2.10/debian/po/fr.po @@ -0,0 +1,98 @@ +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2003-06-21 10:29+0200\n" +"Last-Translator: Michel Grentzinger \n" +"Language-Team: French \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 "Faut-il lancer cfexecd au dmarrage?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" +"cfexecd est un programmateur qui lance priodiquement cfagend, le programme " +"qui ralise rellement le travail." + +#. 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 "" +"Si vous lancez cfagent vous-mme ou si vous prfrez le lancer via cron, " +"vous n'en avez pas besoin." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Faut-il lancer cfservd au dmarrage?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "" +"cfservd gre le partage des fichiers pour les processus distants 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 "" +"Il fournit galement aux htes distants (aprs authentification) la " +"possibilit de demander cfservd le lancement de cfagent." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Faut-il lancer cfenvd au dmarrage?" + +#. 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 surveille l'environnement du systme (utilisation des disques, " +"vrification de la longueur de la file d'attente, etc.) et note la moyenne " +"et l'cart-type de chacun des paramtres." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"Les informations recueillies ici peuvent tre facilement accdes par " +"cfagent et reprsentes graphiquement par cfenvgraph." --- cfengine2-2.2.10.orig/debian/po/ca.po +++ cfengine2-2.2.10/debian/po/ca.po @@ -0,0 +1,99 @@ +# 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 , 2004. +# Miguel Gea Milvaques , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2_2.1.10-2\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2004-12-13 23:34+0100\n" +"Last-Translator: Miguel Gea Milvaques \n" +"Language-Team: Catalan \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" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Voleu executar cfexecd cada cop que arrenqui la màquina?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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." + +#. 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 "" +"Si executeu cfagent a mà o fent servir el cron, podrieu no necessitar açò." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Voleu executar cfservd a l'arrancar la màquina ?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd gestiona el servei de fitxers a processos remots de 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 "" +"Per maquines remotes,també dona la facilitat de preguntar a cfservd de " +"executar cfagent (desprès de autenticar-se)." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Voleu executar cfenvd a l'arrancar la màquina?" + +#. 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 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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +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.10.orig/debian/po/cs.po +++ cfengine2-2.2.10/debian/po/cs.po @@ -0,0 +1,87 @@ +# Czech translation of cfengine2 templates +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2 2.1.13-1\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2005-04-16 13:40+0200\n" +"Last-Translator: Martin Sin \n" +"Language-Team: LCzech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "Spustit cfexecd pi startu?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" +"cfexecd je plnova, kter pravideln spout cfagent, program vykonvajc " +"vlastn prci." + +#. 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 "" +"Jestlie vyvolte cfagent run nebo ho spustte pomoc cronu, mon to " +"nebudete potebovat." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "Spustit cfservd pi sputn systmu?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd d souborovou slubu pomoc vzdlench proces 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 "" +"M tak vhody pro vzdlen pstupy (po oven) - cfservd se zept zda " +"spustit cfagent." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "Spustit cfenvd pi sputn systmu?" + +#. 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 monitoruje systmov prosted (vyuit disku, dlku front atd.) a " +"zaznamenv prmrn a standardn odchylky." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "" +"Information gathered here is easily available to cfagent, and can be output " +"using cfenvgraph." +msgstr "" +"Zskan informace jsou snadno pstupn cfagentu a mohou bt vykresleny " +"pomoc cfenvgraph." --- cfengine2-2.2.10.orig/debian/po/vi.po +++ cfengine2-2.2.10/debian/po/vi.po @@ -0,0 +1,92 @@ +# Vietnamese translation for cfengine2. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2 2.1.14-1\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2005-06-13 15:36+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" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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." + +#. 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 "" +"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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +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?" + +#. 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 "" +"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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +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.10.orig/debian/po/tr.po +++ cfengine2-2.2.10/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 , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2004-06-06 05:40+0300\n" +"Last-Translator: Osman Yüksel \n" +"Language-Team: Turkish \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:1001 +msgid "Start cfexecd at boot-time?" +msgstr "cfexecd açılış sırasında başlatılsın mı?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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:1001 +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:2001 +msgid "Start cfservd at boot-time?" +msgstr "cfservd açılış sırasında başlatılsın mı?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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:2001 +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:3001 +msgid "Start cfenvd at boot-time?" +msgstr "xfevnd açılış sırasında başlatılsın mı?" + +#. 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, 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:3001 +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.10.orig/debian/po/pt.po +++ cfengine2-2.2.10/debian/po/pt.po @@ -0,0 +1,91 @@ +# Portuguese translation for cfengine2 debconf messages. +# Copyright (C) 2007 Pedro Ribeiro +# This file is distributed under the same license as the cfengine2 package. +# Pedro Ribeiro , 2007 +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2 2.1.22\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2007-05-22 22:08+0100\n" +"Last-Translator: Pedro Ribeiro \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 +#: ../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.10.orig/debian/po/de.po +++ cfengine2-2.2.10/debian/po/de.po @@ -0,0 +1,91 @@ +# Translation of cfengine2 debconf templates to German +# Copyright (C) Patrick Willam , 2003. +# Copyright (C) Helge Kreutzmann , 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 \n" +"Language-Team: German \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 ausfhrt. 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 ausfhren, " +"dann knnten Sie dies nicht bentigen." + +#. 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 fr 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 "" +"Fr nicht-lokale Rechner stellt es auerdem (nach Authentifizierung) eine " +"Mglichkeit zur Verfgung, Cfservd darum zu bitten, Cfagent auszufhren." + +#. 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, Lnge 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 fr cfagent problemlos verfgbar, " +"und knnen mittels Cfenvgraph ausgegeben werden." --- cfengine2-2.2.10.orig/debian/po/templates.pot +++ cfengine2-2.2.10/debian/po/templates.pot @@ -0,0 +1,81 @@ +# 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: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\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 +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "" +"cfexecd is a scheduler that periodically runs cfagent, the program that " +"actually does the work." +msgstr "" + +#. 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 "" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "" + +#. 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 "" + +#. 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.10.orig/debian/po/nl.po +++ cfengine2-2.2.10/debian/po/nl.po @@ -0,0 +1,100 @@ +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2003-08-10 22:40+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "cfexecd bij het opstarten starten?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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." + +#. 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 "" +"Dit is niet nodig indien u verkiest om cfagent handmatig of via cron aan te " +"roepen." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "cfservd bij het opstarten starten?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "" +"cfservd staat in voor het aanbieden van bestanden aan cfagent-processen op " +"andere computers." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "cfenvd bij het opstarten starten?" + +#. 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 controleert de systeemomgeving (harde-schijf-gebruik, run-queue-" +"lengte, etc.) en houd gemiddelde en standaard afwijking voor elk bij." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +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.10.orig/debian/po/es.po +++ cfengine2-2.2.10/debian/po/es.po @@ -0,0 +1,114 @@ +# 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 +# +# 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" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2005-10-10 17:07+0100\n" +"Last-Translator: César Gómez Martín \n" +"Language-Team: Debian l10n spanish \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" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +msgid "Start cfexecd at boot-time?" +msgstr "¿Quiere arrancar cfexecd en el inicio del sistema?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:1001 +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." + +#. 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 "" +"No necesita esto si ejecuta cfagent manualmente o si escoge ejecutarlo a " +"través de cron." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "Start cfservd at boot-time?" +msgstr "¿Quiere arrancar cfservd en el inicio del sistema?" + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +msgid "cfservd manages file-serving to remote cfagent processes." +msgstr "cfservd gestiona el servicio de ficheros a procesos cfagent remotos." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:2001 +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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +msgid "Start cfenvd at boot-time?" +msgstr "¿Quiere arrancar cfenvd en el inicio del sistema?" + +#. 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 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." + +#. Type: boolean +#. Description +#: ../cfengine2.templates:3001 +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.10.orig/debian/po/gl.po +++ cfengine2-2.2.10/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 , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: cfengine2\n" +"Report-Msgid-Bugs-To: cfengine2@packages.debian.org\n" +"POT-Creation-Date: 2009-02-14 19:14+0000\n" +"PO-Revision-Date: 2008-06-02 18:40+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 +#: ../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.10.orig/debian/patches/511666-segfault.patch +++ cfengine2-2.2.10/debian/patches/511666-segfault.patch @@ -0,0 +1,20 @@ +Fix a bug involving CheckFriendReliability (see bug #482439) + +Index: cfengine2-2.2.9/src/instrument.c +=================================================================== +--- cfengine2-2.2.9.orig/src/instrument.c 2009-03-06 21:25:59.000000000 +0000 ++++ cfengine2-2.2.9/src/instrument.c 2009-03-06 21:26:31.000000000 +0000 +@@ -716,11 +716,11 @@ + key.data = timekey; + key.size = strlen(timekey)+1; + +- if ((errno = dbp->get(dbp,NULL,&key,&value,0)) != 0) ++ if ((errno = dbpent->get(dbpent,NULL,&key,&value,0)) != 0) + { + if (errno != DB_NOTFOUND) + { +- dbp->err(dbp,errno,NULL); ++ dbpent->err(dbpent,errno,NULL); + exit(1); + } + } --- cfengine2-2.2.10.orig/debian/patches/fix-manpages-paths.patch +++ cfengine2-2.2.10/debian/patches/fix-manpages-paths.patch @@ -0,0 +1,135 @@ +diff --git a/doc/cfagent.8 b/doc/cfagent.8 +index e3da7a3..052fc52 100644 +--- a/doc/cfagent.8 ++++ b/doc/cfagent.8 +@@ -2,7 +2,7 @@ + .SH NAME + cfagent \- system configuration agent + .SH SYNOPSIS +-/usr/local/sbin/cfagent [options] ++/usr/sbin/cfagent [options] + + .SH DESCRIPTION + .B cfengine +diff --git a/doc/cfengine.8 b/doc/cfengine.8 +index a7b2d54..6179de8 100644 +--- a/doc/cfengine.8 ++++ b/doc/cfengine.8 +@@ -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 +diff --git a/doc/cfenvd.8 b/doc/cfenvd.8 +index 07faa9b..d49422e 100644 +--- a/doc/cfenvd.8 ++++ b/doc/cfenvd.8 +@@ -3,7 +3,7 @@ + cfengine \- network configuration engine + .SH SYNOPSIS + +-/usr/local/sbin/cfenvd ++/usr/sbin/cfenvd + + + .SH DESCRIPTION +diff --git a/doc/cfenvgraph.8 b/doc/cfenvgraph.8 +index d3bcfab..bb38021 100644 +--- a/doc/cfenvgraph.8 ++++ b/doc/cfenvgraph.8 +@@ -3,7 +3,7 @@ + cfengine \- network configuration engine + .SH SYNOPSIS + +-/usr/local/sbin/cfenvgraph [options] ++/usr/sbin/cfenvgraph [options] + + .SH COMMAND LINE OPTIONS + .IP --help +diff --git a/doc/cfexecd.8 b/doc/cfexecd.8 +index a4e2b5b..81b2611 100644 +--- a/doc/cfexecd.8 ++++ b/doc/cfexecd.8 +@@ -2,7 +2,7 @@ + .SH NAME + cfengine \- network configuration engine + .SH SYNOPSIS +-/usr/local/sbin/cfexecd ++/usr/sbin/cfexecd + + .SH DESCRIPTION + .B cfengine +diff --git a/doc/cfkey.8 b/doc/cfkey.8 +index 99d7a71..0e71842 100644 +--- a/doc/cfkey.8 ++++ b/doc/cfkey.8 +@@ -3,7 +3,7 @@ + cfengine \- network configuration engine + .SH SYNOPSIS + +-/usr/local/sbin/cfkey ++/usr/sbin/cfkey + + + .SH DESCRIPTION +diff --git a/doc/cfrun.8 b/doc/cfrun.8 +index 4341fa6..9678fc0 100644 +--- a/doc/cfrun.8 ++++ b/doc/cfrun.8 +@@ -3,7 +3,7 @@ + cfrun \- Execute remote cfagents + .SH SYNOPSIS + +-/usr/local/sbin/cfrun [options] ++/usr/sbin/cfrun [options] + + .SH DESCRIPTION + .B cfengine +diff --git a/doc/cfservd.8 b/doc/cfservd.8 +index 27ba58c..048f3a8 100644 +--- a/doc/cfservd.8 ++++ b/doc/cfservd.8 +@@ -2,7 +2,7 @@ + .SH NAME + cfservd \- cfengine server daemon + .SH SYNOPSIS +-/usr/local/sbin/cfservd [options] ++/usr/sbin/cfservd [options] + + .SH DESCRIPTION + .B cfengine +diff --git a/doc/cfshow.8 b/doc/cfshow.8 +index fd65d96..d1c775d 100644 +--- a/doc/cfshow.8 ++++ b/doc/cfshow.8 +@@ -3,7 +3,7 @@ + cfshow \- Dump cfengine databases + .SH SYNOPSIS + +-/usr/local/sbin/cfshow [options] ++/usr/sbin/cfshow [options] + + .SH DESCRIPTION + .B cfengine --- cfengine2-2.2.10.orig/debian/patches/build-only-info.patch +++ cfengine2-2.2.10/debian/patches/build-only-info.patch @@ -0,0 +1,54 @@ +diff --git a/doc/Makefile.am b/doc/Makefile.am +index f770cc7..7175d77 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -4,39 +4,10 @@ man_MANS = cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfr + # Info used in building the Info files + info_TEXINFOS = cfengine-Reference.texinfo cfengine-Tutorial.texinfo cfengine-Anomalies.texinfo + infofiles = $(info_TEXINFOS:.texinfo=.info) +-MAKEINFOHTML = $(MAKEINFO) --html --no-split --css-include=cfcomdoc.css +- +-# Info used in building and installing HTML files +-htmlfiles = $(info_TEXINFOS:.texinfo=.html) +- +-htmldir = $(pkgdatadir)/html +-html_DATA = $(htmlfiles) +- +-# Info used in building and installing Postscript files +-psfiles = $(info_TEXINFOS:.texinfo=.ps) +-pdffiles = $(info_TEXINFOS:.texinfo=.pdf) +-dvifiles = $(info_TEXINFOS:.texinfo=.dvi) +- +-docdir = $(pkgdatadir)/doc +-doc_DATA = $(psfiles) $(pdffiles) + + # Make sure these get distributed with everything else. + +-EXTRA_DIST = cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8 cfengine.8 cfshow.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 texinfo.tex $(htmlfiles) $(infofiles) $(pdffiles) +- +-SUFFIXES = html latex pdf ps dvi +- +-%.html : %.texinfo +- ${MAKEINFO} -I $(srcdir) --html --no-split $< +- +-%.dvi : %.latex +- ${LATEX} $< +- +-%.dvi : %.texinfo +- ${TEXI2DVI} $< +- +-%.pdf : %.ps +- ${PS2PDF} $< ++EXTRA_DIST = cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8 cfengine.8 cfshow.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 texinfo.tex $(infofiles) + + # + # Some basic clean ups +@@ -47,7 +18,7 @@ MOSTLYCLEANFILES = *~ *.orig + # Get everything removed down to where rebuilding requires: + # "make; make install" + # +-CLEANFILES = $(htmlfiles) $(psfiles) $(pdffiles) ++CLEANFILES = + + # + # Get everything removed down to where rebuilding requires: --- cfengine2-2.2.10.orig/debian/patches/kfreebsd-configure +++ cfengine2-2.2.10/debian/patches/kfreebsd-configure @@ -0,0 +1,15 @@ +patch to compile cfengine2 on GNU/kFreeBSD (see #537887) + +--- a/configure.ac ++++ b/configure.ac +@@ -645,6 +645,10 @@ + AC_DEFINE(LINUX) + AC_CHECK_LIB(nss_nis, yp_get_default_domain) + ;; ++ kfreebsd*-gnu) ++ AC_DEFINE(FREEBSD) ++ AC_CHECK_LIB(nss_nis, yp_get_default_domain) ++ ;; + freebsd*|dragonfly*) + AC_DEFINE(FREEBSD) + CFLAGS="$CFLAGS -pthread -D_THREAD_SAFE -DBUILDTIN_GCC_THREAD" --- cfengine2-2.2.10.orig/debian/patches/fix-install-perms.patch +++ cfengine2-2.2.10/debian/patches/fix-install-perms.patch @@ -0,0 +1,43 @@ +diff --git a/contrib/Makefile.am b/contrib/Makefile.am +index 012ccdf..dc3eff1 100644 +--- a/contrib/Makefile.am ++++ b/contrib/Makefile.am +@@ -2,7 +2,7 @@ s1 = cfdoc + s2 = cfengine.el + + sbin_SCRIPTS = $(s1) +-pkgdata_SCRIPTS = $(s2) ++pkgdata_DATA = $(s2) + + EXTRA_DIST = README $(s1) $(s2) + +diff --git a/inputs/Makefile.am b/inputs/Makefile.am +index 096f46f..16234c4 100644 +--- a/inputs/Makefile.am ++++ b/inputs/Makefile.am +@@ -1,4 +1,4 @@ +-pkgdata_SCRIPTS = \ ++pkgdata_DATA = \ + cf.chflags.example \ + cf.freebsd.example \ + cf.ftp.example \ +@@ -6,7 +6,6 @@ pkgdata_SCRIPTS = \ + cf.linux.example \ + cf.main.example \ + cf.motd.example \ +- cf.preconf.example \ + cf.services.example \ + cf.site.example \ + cf.solaris.example \ +@@ -19,7 +18,10 @@ pkgdata_SCRIPTS = \ + cfrc.example \ + cfrun.hosts.example + +-EXTRA_DIST = $(pkgdata_SCRIPTS) ++pkgdata_SCRIPTS = \ ++ cf.preconf.example ++ ++EXTRA_DIST = $(pkgdata_DATA) $(pkgdata_SCRIPTS) + + # + # Some basic clean ups --- cfengine2-2.2.10.orig/debian/patches/admit-noclass-520696.patch +++ cfengine2-2.2.10/debian/patches/admit-noclass-520696.patch @@ -0,0 +1,15 @@ +Fix a bug with admit/grant that let cfengine2 fails when the class +of a cfengine fragment does not exist and more than a host or IP +ranges are specified for a path (see #520696) + +--- a/src/install.c ++++ b/src/install.c +@@ -6561,7 +6561,7 @@ + if (!IsDefinedClass(classes)) + { + Debug1("Not installing Auth path, no match\n"); +- InitializeAction(); ++// InitializeAction(); + return; + } + --- cfengine2-2.2.10.orig/debian/patches/fix-man-sections.patch +++ cfengine2-2.2.10/debian/patches/fix-man-sections.patch @@ -0,0 +1,105 @@ +diff --git a/doc/cfetoolcheck.8 b/doc/cfetoolcheck.8 +index fda2efe..9f8d796 100644 +--- a/doc/cfetoolcheck.8 ++++ b/doc/cfetoolcheck.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLCHECK 1" +-.TH CFETOOLCHECK 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLCHECK 8" ++.TH CFETOOLCHECK 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolcheck \- Check a new value against the averages currently in the database + .SH "SYNOPSIS" +diff --git a/doc/cfetoolcreate.8 b/doc/cfetoolcreate.8 +index f02a16f..83d27c5 100644 +--- a/doc/cfetoolcreate.8 ++++ b/doc/cfetoolcreate.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLCREATE 1" +-.TH CFETOOLCREATE 1 "2004-09-22" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLCREATE 8" ++.TH CFETOOLCREATE 8 "2004-09-22" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolcreate \- Set up a new Database + .SH "SYNOPSIS" +diff --git a/doc/cfetooldump.8 b/doc/cfetooldump.8 +index 8efa2c6..c4dd05c 100644 +--- a/doc/cfetooldump.8 ++++ b/doc/cfetooldump.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLDUMP 1" +-.TH CFETOOLDUMP 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLDUMP 8" ++.TH CFETOOLDUMP 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetooldump \- dump the contents of a database in XML format + .SH "SYNOPSIS" +diff --git a/doc/cfetoolgraph.8 b/doc/cfetoolgraph.8 +index fde4bd7..fbdacf9 100644 +--- a/doc/cfetoolgraph.8 ++++ b/doc/cfetoolgraph.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLGRAPH 1" +-.TH CFETOOLGRAPH 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLGRAPH 8" ++.TH CFETOOLGRAPH 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolgraph \- create graphs from a cfetool database + .SH "SYNOPSIS" +diff --git a/doc/cfetoolimport.8 b/doc/cfetoolimport.8 +index 3588c60..ce38fc6 100644 +--- a/doc/cfetoolimport.8 ++++ b/doc/cfetoolimport.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLIMPORT 1" +-.TH CFETOOLIMPORT 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLIMPORT 8" ++.TH CFETOOLIMPORT 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolimport \- import the contents of a database from XML format + .SH "SYNOPSIS" +diff --git a/doc/cfetoolinfo.8 b/doc/cfetoolinfo.8 +index dc3f173..4fbc599 100644 +--- a/doc/cfetoolinfo.8 ++++ b/doc/cfetoolinfo.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLINFO 1" +-.TH CFETOOLINFO 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLINFO 8" ++.TH CFETOOLINFO 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolinfo \- Get information about a database + .SH "SYNOPSIS" +diff --git a/doc/cfetoolupdate.8 b/doc/cfetoolupdate.8 +index 06848d8..82cf8c3 100644 +--- a/doc/cfetoolupdate.8 ++++ b/doc/cfetoolupdate.8 +@@ -128,8 +128,8 @@ + .rm #[ #] #H #V #F C + .\" ======================================================================== + .\" +-.IX Title "CFETOOLUPDATE 1" +-.TH CFETOOLUPDATE 1 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" ++.IX Title "CFETOOLUPDATE 8" ++.TH CFETOOLUPDATE 8 "2004-09-21" "perl v5.8.4" "User Contributed Perl Documentation" + .SH "NAME" + cfetoolupdate \- Update the database with a new value + .SH "SYNOPSIS" --- cfengine2-2.2.10.orig/debian/patches/fix-hyphens-in-manpages.patch +++ cfengine2-2.2.10/debian/patches/fix-hyphens-in-manpages.patch @@ -0,0 +1,306 @@ +diff --git a/doc/cfetoolcheck.8 b/doc/cfetoolcheck.8 +index 4ef6e0c..2fe7aa4 100644 +--- a/doc/cfetoolcheck.8 ++++ b/doc/cfetoolcheck.8 +@@ -208,31 +208,31 @@ as compared to an average of equivalent earlier times, as specified below: + .Vb 27 + \& code high|low|normal meaning + \& ------------------------------------------------------------- +-\& -2 - no sigma variation ++\& \-2 - no sigma variation + \& ------------------------------------------------------------- +-\& -4 low within noise threshold, and within +-\& -5 normal 2 standard deviations from +-\& -6 high expected value ++\& \-4 low within noise threshold, and within ++\& \-5 normal 2 standard deviations from ++\& \-6 high expected value + \& ------------------------------------------------------------- +-\& -14 low microanomaly: within noise +-\& -15 normal threshold, but 2 or more standard +-\& -16 high deviations from expected value ++\& \-14 low microanomaly: within noise ++\& \-15 normal threshold, but 2 or more standard ++\& \-16 high deviations from expected value + \& ------------------------------------------------------------- +-\& -24 low normal; within 1 standard deviation +-\& -25 normal from the expected value +-\& -26 high ++\& \-24 low normal; within 1 standard deviation ++\& \-25 normal from the expected value ++\& \-26 high + \& ------------------------------------------------------------- +-\& -34 low dev1; more than 1 standard +-\& -35 normal deviation from the expected +-\& -36 high value ++\& \-34 low dev1; more than 1 standard ++\& \-35 normal deviation from the expected ++\& \-36 high value + \& ------------------------------------------------------------ +-\& -44 low dev2; more than 2 standard +-\& -45 normal deviations from the expected +-\& -46 high value ++\& \-44 low dev2; more than 2 standard ++\& \-45 normal deviations from the expected ++\& \-46 high value + \& ------------------------------------------------------------- +-\& -54 low anomaly; more than 3 standard +-\& -55 normal deviations from the expected +-\& -56 high value ++\& \-54 low anomaly; more than 3 standard ++\& \-55 normal deviations from the expected ++\& \-56 high value + .Ve + .PP + Where \*(L"low\*(R" indicates that the current value is below both the expected value +@@ -247,7 +247,7 @@ standard output stream, as described above. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 2 +-\& % cfetool check temperature --path /my/path --value 20 --histograms ++\& % cfetool check temperature \-\-path /my/path \-\-value 20 \-\-histograms + \& yrly=0,bkt=0;wkly=-6,bkt=51;dly=0,bkt=0 + .Ve + .PP +diff --git a/doc/cfetoolcreate.8 b/doc/cfetoolcreate.8 +index e212137..4a1ffc5 100644 +--- a/doc/cfetoolcreate.8 ++++ b/doc/cfetoolcreate.8 +@@ -204,7 +204,7 @@ Prints a short help message and then exits. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 1 +-\& % cfetool create temperature --path /my/path --histograms --step 10 ++\& % cfetool create temperature \-\-path /my/path \-\-histograms \-\-step 10 + .Ve + .PP + Creates an empty database and histogram file in \fB/my/path/temperature/\fR, +diff --git a/doc/cfetooldump.8 b/doc/cfetooldump.8 +index 8d5c734..e9a9142 100644 +--- a/doc/cfetooldump.8 ++++ b/doc/cfetooldump.8 +@@ -179,7 +179,7 @@ Print a short help message and then exit. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 1 +-\& % cfetool dump temperature --path /my/path -f temperature.xml ++\& % cfetool dump temperature \-\-path /my/path \-f temperature.xml + .Ve + .PP + Prints the following to the file \fBtemperature.xml\fR: +diff --git a/doc/cfetoolgraph.8 b/doc/cfetoolgraph.8 +index ada655c..fde4bd7 100644 +--- a/doc/cfetoolgraph.8 ++++ b/doc/cfetoolgraph.8 +@@ -188,7 +188,7 @@ Prints a short help message and then exits. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 1 +-\& % cfetoolgraph temperature --path /my/path --resolution ++\& % cfetoolgraph temperature \-\-path /my/path \-\-resolution + .Ve + .PP + Create graph files of the weekly database in high resolution in the +diff --git a/doc/cfetoolimport.8 b/doc/cfetoolimport.8 +index 7af8869..ffc1df9 100644 +--- a/doc/cfetoolimport.8 ++++ b/doc/cfetoolimport.8 +@@ -177,7 +177,7 @@ Print a short help message and then exit. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 1 +-\& % cfetool import temperature_copy --path /my/path --file ./temperature.xml ++\& % cfetool import temperature_copy \-\-path /my/path \-\-file ./temperature.xml + .Ve + .PP + Create a new weekly database, \f(CW\*(C`temperature_copy\*(C'\fR, in the \f(CW\*(C`/my/path\*(C'\fR +diff --git a/doc/cfetoolinfo.8 b/doc/cfetoolinfo.8 +index 121fb9a..658a962 100644 +--- a/doc/cfetoolinfo.8 ++++ b/doc/cfetoolinfo.8 +@@ -171,7 +171,7 @@ Prints a short help message and then exits. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 1 +-\& % cfetool info temperature --path /my/path ++\& % cfetool info temperature \-\-path /my/path + .Ve + .PP + .Vb 7 +diff --git a/doc/cfetoolupdate.8 b/doc/cfetoolupdate.8 +index 2f41b1e..80c486e 100644 +--- a/doc/cfetoolupdate.8 ++++ b/doc/cfetoolupdate.8 +@@ -208,31 +208,31 @@ as compared to an average of equivalent earlier times, as specified below: + .Vb 27 + \& code high|low|normal meaning + \& ------------------------------------------------------------- +-\& -2 - no sigma variation ++\& \-2 - no sigma variation + \& ------------------------------------------------------------- +-\& -4 low within noise threshold, and within +-\& -5 normal 2 standard deviations from +-\& -6 high expected value ++\& \-4 low within noise threshold, and within ++\& \-5 normal 2 standard deviations from ++\& \-6 high expected value + \& ------------------------------------------------------------- +-\& -14 low microanomaly: within noise +-\& -15 normal threshold, but 2 or more standard +-\& -16 high deviations from expected value ++\& \-14 low microanomaly: within noise ++\& \-15 normal threshold, but 2 or more standard ++\& \-16 high deviations from expected value + \& ------------------------------------------------------------- +-\& -24 low normal; within 1 standard deviation +-\& -25 normal from the expected value +-\& -26 high ++\& \-24 low normal; within 1 standard deviation ++\& \-25 normal from the expected value ++\& \-26 high + \& ------------------------------------------------------------- +-\& -34 low dev1; more than 1 standard +-\& -35 normal deviation from the expected +-\& -36 high value ++\& \-34 low dev1; more than 1 standard ++\& \-35 normal deviation from the expected ++\& \-36 high value + \& ------------------------------------------------------------ +-\& -44 low dev2; more than 2 standard +-\& -45 normal deviations from the expected +-\& -46 high value ++\& \-44 low dev2; more than 2 standard ++\& \-45 normal deviations from the expected ++\& \-46 high value + \& ------------------------------------------------------------- +-\& -54 low anomaly; more than 3 standard +-\& -55 normal deviations from the expected +-\& -56 high value ++\& \-54 low anomaly; more than 3 standard ++\& \-55 normal deviations from the expected ++\& \-56 high value + .Ve + .PP + Where \*(L"low\*(R" indicates that the current value is below both the expected value +@@ -247,7 +247,7 @@ standard output stream, as described above. + .SH "EXAMPLE" + .IX Header "EXAMPLE" + .Vb 2 +-\& % cfetool update temperature --path /my/path --value 14.5 --histograms ++\& % cfetool update temperature \-\-path /my/path \-\-value 14.5 \-\-histograms + \& yrly=0,wkly=-6,dly=0 + .Ve + .PP +diff --git a/doc/cfexecd.8 b/doc/cfexecd.8 +index a4e2b5b..6a78cba 100644 +--- a/doc/cfexecd.8 ++++ b/doc/cfexecd.8 +@@ -13,7 +13,7 @@ execution of cfagent. It may be used to capture cfagent output + and send it as mail when run cron cron, e.g. + + .PP +-0,30 * * * * /var/cfengine/bin/cfexecd -F ++0,30 * * * * /var/cfengine/bin/cfexecd \-F + + .PP + or it can be run in daemon mode with scheduling parameters +diff --git a/doc/cfrun.8 b/doc/cfrun.8 +index 4341fa6..795f8d1 100644 +--- a/doc/cfrun.8 ++++ b/doc/cfrun.8 +@@ -26,15 +26,15 @@ classes or flags to the remote agent. + + .SH EXAMPLES + +-cfrun specialhost1 specialhost2 -- --verbose -- \!solaris ++cfrun specialhost1 specialhost2 \-\- \-\-verbose -- \!solaris + + .PP + In this example, we contact hosts specialhost1 specialhost2 by name, and ask them +-to execute cfagent with the --verbose flag, if the class solaris is not ++to execute cfagent with the \-\-verbose flag, if the class solaris is not + defined. + .PP + .PP +-cfrun specialhost1 --verbose -- -- \!solaris ++cfrun specialhost1 \-\-verbose \-\- \-\- \!solaris + + .PP + In this example the verbose flag is sent to cfrun rather than to the remote agent. +diff --git a/doc/cfservd.8 b/doc/cfservd.8 +index 27ba58c..614e37b 100644 +--- a/doc/cfservd.8 ++++ b/doc/cfservd.8 +@@ -14,7 +14,7 @@ IP address. + .PP + The daemon looks for a configuration file cfservd.conf by default. + Cfservd gives little information when it fails to serve. This is by design. +-More information can be obtained using the debug option -d2 on both ++More information can be obtained using the debug option \-d2 on both + client and server ends. + + .IP "-d (--debug)" +diff --git a/doc/cfshow.8 b/doc/cfshow.8 +index fd65d96..a5132bc 100644 +--- a/doc/cfshow.8 ++++ b/doc/cfshow.8 +@@ -21,13 +21,13 @@ provided for easy integration with reporting. + + .SH EXAMPLES + +-cfshow --locks +-cfshow --last-seen +-cfshow --checksum +-cfshow --active +-cfshow --audit +-cfshow --classes +-cfshow --regex ++cfshow \-\-locks ++cfshow \-\-last-seen ++cfshow \-\-checksum ++cfshow \-\-active ++cfshow \-\-audit ++cfshow \-\-classes ++cfshow \-\-regex + + .PP + These show the named databases. +@@ -36,22 +36,22 @@ These show the named databases. + + Here are all of the options supported: + +---help (-h) +---debug (-d) +---verbose (-v) +---locks (-l) +---last-seen (-s) +---performance (-p) +---checksum (-c) +---classes (-C) +---filename (-f) +---regex (-r) +---active (-a) +---version (-V) +---html (-H) +---xml (-X) +---purge (-P) +---audit (-A) ++\-\-help (\-h) ++\-\-debug (\-d) ++\-\-verbose (\-v) ++\-\-locks (\-l) ++\-\-last-seen (\-s) ++\-\-performance (\-p) ++\-\-checksum (\-c) ++\-\-classes (\-C) ++\-\-filename (\-f) ++\-\-regex (\-r) ++\-\-active (\-a) ++\-\-version (\-V) ++\-\-html (\-H) ++\-\-xml (\-X) ++\-\-purge (\-P) ++\-\-audit (\-A) + + .SH FILES + cfshow reads cfengine internal information that is normally stored in the Work Directory /var/cfengine. --- cfengine2-2.2.10.orig/debian/patches/add-missing-manpages.patch +++ cfengine2-2.2.10/debian/patches/add-missing-manpages.patch @@ -0,0 +1,64 @@ +diff --git a/doc/Makefile.am b/doc/Makefile.am +index f770cc7..3fba134 100644 +--- a/doc/Makefile.am ++++ b/doc/Makefile.am +@@ -1,5 +1,5 @@ + # Info used in building the MAN files +-man_MANS = cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8 cfshow.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 ++man_MANS = cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8 cfshow.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8 cfetool.8 cfdoc.8 + + # Info used in building the Info files + info_TEXINFOS = cfengine-Reference.texinfo cfengine-Tutorial.texinfo cfengine-Anomalies.texinfo +diff --git a/doc/cfdoc.8 b/doc/cfdoc.8 +new file mode 100644 +index 0000000..ae7f649 +--- /dev/null ++++ b/doc/cfdoc.8 +@@ -0,0 +1,24 @@ ++.TH cfdoc 8 "2009-02-15" ++.SH "NAME" ++cfdoc \- Simple utility to document a cfengine configuration file ++.SH "SYNOPSIS" ++\&\fBcfdoc\fR ++\&[\fB\-c\fR\ \fIcomment_marker\fR] ++[\fB\-l\fR\ \fIlanguage\fR] ++[\fB\-s\fR\ \fIstart-marker\fR] ++[\fB\-e\fR\ \fIend-marker\fR] ++