--- sinfo-0.0.42.orig/.gbp.conf +++ sinfo-0.0.42/.gbp.conf @@ -0,0 +1,3 @@ +[git-dch] +meta=True +id-length=7 --- sinfo-0.0.42.orig/sinfo/sinfohtml.cc +++ sinfo-0.0.42/sinfo/sinfohtml.cc @@ -1,5 +1,6 @@ #include #include +#include #include #include #include --- sinfo-0.0.42.orig/debian/compat +++ sinfo-0.0.42/debian/compat @@ -0,0 +1 @@ +7 --- sinfo-0.0.42.orig/debian/copyright +++ sinfo-0.0.42/debian/copyright @@ -0,0 +1,14 @@ +This package was debianized by Juergen Rinas +Thu, 8 Sep 2002 11:58:47 +0200. It was prepared for Debian main +by Gaudenz Steinlin + +Upstream Author: Juergen Rinas + +Copyright: sinfo is copyright (C) 2002-2008 by J. Rinas + and is distributed under the terms of the + GNU General Public License (GPL). + +On Debian systems, the complete text of the GNU General Public +License, version 2, can be found in /usr/share/common-licenses/GPL-2. + +Download URL: http://www.ant.uni-bremen.de/whomes/rinas/sinfo/download/ --- sinfo-0.0.42.orig/debian/sinfo.config +++ sinfo-0.0.42/debian/sinfo.config @@ -0,0 +1,11 @@ +#!/bin/sh + +action=$1 +version=$2 + +set -e + +. /usr/share/debconf/confmodule + +db_input high sinfo/cgi || true +db_go --- sinfo-0.0.42.orig/debian/sinfo.default +++ sinfo-0.0.42/debian/sinfo.default @@ -0,0 +1,14 @@ +# defaults file for sinfo daemon + +# change the below to 0/1 if you don't_want/want to run sinfod +RUN_SINFO=1 + + +# comand line options for sinfod +OPTS="" +OPTS="${OPTS} --quiet" + +# use 127.0.0.1 as broadcast address if you don't want to send +# any information over the network +#OPTS="${OPTS} --bcastaddress=127.0.0.1" + --- sinfo-0.0.42.orig/debian/sinfo.dirs +++ sinfo-0.0.42/debian/sinfo.dirs @@ -0,0 +1,4 @@ +usr/bin +usr/sbin +usr/lib/cgi-bin +usr/lib/sinfo --- sinfo-0.0.42.orig/debian/sinfo.doc-base +++ sinfo-0.0.42/debian/sinfo.doc-base @@ -0,0 +1,10 @@ +Document: sinfo +Title: Sinfo Documentation +Author: Jürgen Rinas +Abstract: Sinfo Documentation in HTML format +Section: System/Monitoring + +Format: HTML +Index: /usr/share/doc/sinfo/html/index.html +Files: /usr/share/doc/sinfo/html/*.html + --- sinfo-0.0.42.orig/debian/sinfo.docs +++ sinfo-0.0.42/debian/sinfo.docs @@ -0,0 +1 @@ +addon --- sinfo-0.0.42.orig/debian/sinfo.init +++ sinfo-0.0.42/debian/sinfo.init @@ -0,0 +1,106 @@ +#! /bin/sh + +### BEGIN INIT INFO +# Provides: sinfo +# Required-Start: $network $local_fs $remote_fs +# Required-Stop: $network $local_fs $remote_fs +# Should-Start: $named +# Should-Stop: $named +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: start sinfod +# Description: start sinfod +### END INIT INFO + + +PATH=/sbin:/bin:/usr/sbin:/usr/bin +DAEMON=/usr/sbin/sinfod +NAME=sinfod +DESC=sinfo + +# default: +OPTS="" +CHUID="daemon" + + +if test -f /etc/default/sinfo; then + . /etc/default/sinfo +fi + +test -f $DAEMON || exit 0 + +if [ "$RUN_SINFO" = 0 ]; then + echo "Modify /etc/default/sinfo to start the sinfo daemon upon startup" + exit 0 +fi + +set -e + +case "$1" in + start) + echo -n "Starting $DESC: $NAME" + start-stop-daemon \ + --start \ + --chuid $CHUID \ + --quiet \ + --name $NAME \ + --exec $DAEMON -- $OPTS + echo "." + ;; + stop) + echo -n "Stopping $DESC: $NAME" + start-stop-daemon \ + --stop \ + --chuid $CHUID \ + --quiet \ + --oknodo \ + --retry 3 \ + --name $NAME \ + --exec $DAEMON + echo "." + ;; + #reload) + # + # If the daemon can reload its config files on the fly + # for example by sending it SIGHUP, do it here. + # + # If the daemon responds to changes in its config file + # directly anyway, make this a do-nothing entry. + # + # echo "Reloading $DESC configuration files." + # start-stop-daemon --stop --signal 1 --quiet --pidfile \ + # /var/run/$NAME.pid --exec $DAEMON + #;; + restart|force-reload) + # + # If the "reload" option is implemented, move the "force-reload" + # option to the "reload" entry above. If not, "force-reload" is + # just the same as "restart". + # + echo -n "Restarting $DESC: $NAME" + start-stop-daemon \ + --stop \ + --chuid $CHUID \ + --quiet \ + --oknodo \ + --retry 3 \ + --name $NAME \ + --exec $DAEMON + sleep 1 + start-stop-daemon \ + --start \ + --chuid $CHUID \ + --quiet \ + --name $NAME \ + --exec $DAEMON -- $OPTS + echo "." + ;; + *) + N=/etc/init.d/$NAME + # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2 + echo "Usage: $N {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0 --- sinfo-0.0.42.orig/debian/sinfo.install +++ sinfo-0.0.42/debian/sinfo.install @@ -0,0 +1 @@ +cgi/sinfo.pl.cgi /usr/share/sinfo --- sinfo-0.0.42.orig/debian/sinfo.postinst +++ sinfo-0.0.42/debian/sinfo.postinst @@ -0,0 +1,50 @@ +#! /bin/sh +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package +# +# 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'. + +case "$1" in + configure) + . /usr/share/debconf/confmodule + + db_get sinfo/cgi || true + if [ "$RET" = true ]; then + ln -sf /usr/share/sinfo/sinfo.pl.cgi /usr/lib/cgi-bin/sinfo + else + rm -f /usr/lib/cgi-bin/sinfo + fi + db_stop + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + echo "." + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + + + +#DEBHELPER# --- sinfo-0.0.42.orig/debian/sinfo.postrm +++ sinfo-0.0.42/debian/sinfo.postrm @@ -0,0 +1,35 @@ +#! /bin/sh +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +#DEBHELPER# + +case "$1" in + remove|abort-install|disappear|purge) + # remove cgi script if it is installed + test ! -L /usr/lib/cgi-bin/sinfo || rm -f /usr/lib/cgi-bin/sinfo + ;; + + upgrade|failed-upgrade|abort-upgrade) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 +esac + + --- sinfo-0.0.42.orig/debian/sinfo.templates +++ sinfo-0.0.42/debian/sinfo.templates @@ -0,0 +1,16 @@ +# These templates have been reviewed by the debian-l10n-english +# team +# +# If modifications/additions/rewording are needed, please ask +# debian-l10n-english@lists.debian.org for advice. +# +# Even minor modifications require translation updates and such +# changes should be coordinated with translators and reviewers. + +Template: sinfo/cgi +Type: boolean +Default: false +_Description: Enable the sinfo CGI script? + A CGI script is included, to provide a web interface for sinfo. It is + disabled by default as it might publish information about the computer not + intended to be public. --- sinfo-0.0.42.orig/debian/rules +++ sinfo-0.0.42/debian/rules @@ -0,0 +1,108 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. +# +# Modified to make a template file for a multi-binary package with separated +# build-arch and build-indep targets by Bill Allombert 2001 + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +# 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) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE)\ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr \ + --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --enable-SIMPLE_USER_CACHE \ + --enable-CPUNO_ADJUST + + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) clean + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + + # Add here commands to install the arch part of the package into + # debian/tmp. + $(MAKE) install DESTDIR=$(CURDIR)/debian/sinfo + + # remove files we don't want to install for now + rm $(CURDIR)/debian/sinfo/usr/bin/sshallsinfo + rm $(CURDIR)/debian/sinfo/usr/share/man/man1/sshallsinfo.1 + # remove .la file, they are not needed on Debian and cause harm + # for multiarch + rm $(CURDIR)/debian/sinfo/usr/lib/sinfo/*.la + + dh_installdocs -XMakefile -X.xml -X.fig README html + dh_installinit --update-rcd-params="defaults 80 10" + dh_installchangelogs + dh_install + + # fix cgi permissions + chmod 755 $(CURDIR)/debian/sinfo/usr/share/sinfo/sinfo.pl.cgi + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installdebconf -a + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- sinfo-0.0.42.orig/debian/control +++ sinfo-0.0.42/debian/control @@ -0,0 +1,18 @@ +Source: sinfo +Section: net +Priority: optional +Maintainer: Jürgen Rinas +Uploaders: Gaudenz Steinlin +Build-Depends: debhelper (>= 7.0.0), libncurses5-dev, libboost-dev, libboost-signals-dev, libboost-regex-dev, libasio-dev, po-debconf +Standards-Version: 3.9.2.0 + +Package: sinfo +Architecture: any +Depends: debconf, ${shlibs:Depends}, ${misc:Depends} +Conflicts: slurm-llnl +Description: tool for monitoring computer clusters using broadcasts + The sinfo cluster monitoring system uses network broadcasts to distribute + information about the status of local nodes, including their CPU/memory + usage, network load, and top five processes. It consists of a daemon + running on each node and an ncurses frontend to monitor them. +Homepage: http://www.ant.uni-bremen.de/whomes/rinas/sinfo/ --- sinfo-0.0.42.orig/debian/changelog +++ sinfo-0.0.42/debian/changelog @@ -0,0 +1,437 @@ +sinfo (0.0.42-1) unstable; urgency=low + + * [d36ccf5] Imported Upstream version 0.0.42 + - Fixes GCC 4.5 FTBFS (Closes: #565059) + * [b9a2a0c] Remove .la files (Closes: #633234) + * [49a7459] Correct spelling of maintainer name + * [c50ea98] Update Standards-Version to 3.9.2.0 + * [ccfac73] Add build-arch and build-indep targets + + -- Gaudenz Steinlin Fri, 22 Jul 2011 18:54:07 +0200 + +sinfo (0.0.33-5) unstable; urgency=low + + * Incorporate and Acknowledge NMUs done by Kumar Appaiah and + Christian Perrier. I fucked this up in the last upload :-( + * [4d93478] Remove changelog.save left over from NMU + * [5ac5289] Revert my FTBFS fix in favor of the fix already in + testing. + + -- Gaudenz Steinlin Sat, 27 Nov 2010 15:29:38 +0100 + +sinfo (0.0.33-4) unstable; urgency=low + + * [543fe14] Add Vietnamese debconf templates translation (Closes: + #576022) - thanks to Clytie Siddall + * [802ae35] Add Danish debconf templates translation (Closes: #603211) + - thanks to Joe Dalton + * [9f104bb] Fix building with gcc-4.4 + + -- Gaudenz Steinlin Sat, 27 Nov 2010 11:52:47 +0100 + +sinfo (0.0.33-3.2) unstable; urgency=low + + * Non-maintainer upload + * Debconf templates and debian/control reviewed by the debian-l10n- + english team as part of the Smith review project. Closes: #552377 + * Add debconf translations: + - Finnish (Esko Arajärvi) + - Romanian (Ionel Mugurel Ciobîcă) + - Russian (Yuri Kozlov), closes: #552447, #556192 + - Swedish (Marten Ågren), closes: #554018, #556582 + - Portuguese (Américo Monteiro), closes: #554105 + - Basque (Piarres Beobide), closes: #554535 + - German (Helge Kreutzmann), closes: #554812 + - Japanese (Hideki Yamane), closes: #554835 + - Czech (Michal Simunek), closes: #554956 + - Galician (Marce Villarino), closes: #554996 + - Spanish (Francisco Javier Cuadrado), closes: #556037 + - Italian (Vincenzo Campanella), closes: #556044 + - French (Jean-Baka Domelevo Entfellner), closes: #556446 + - Swedish (Martin Bagge). Closes: #556582 + + -- Christian Perrier Sun, 07 Feb 2010 08:15:42 +0100 + +sinfo (0.0.33-3.1) unstable; urgency=low + + * Non-maintainer upload. + * Fix FTBFS with GCC 4.4 with Martin Michlmayr's patch. + (Closes: #549674) + + -- Kumar Appaiah Sun, 20 Dec 2009 11:27:26 -0600 + +sinfo (0.0.33-3) unstable; urgency=low + + * Add myself as an uploader + * Remove unnecessary initrscipt dependency on ssh (Closes: #548737) + * Change default broadcast address to upstream default + + -- Gaudenz Steinlin Thu, 05 Nov 2009 17:34:30 +0100 + +sinfo (0.0.33-2) unstable; urgency=low + + * Upload to Debian main (Closes: #547350) + * Add missing build dependencies + * Improve package description + * Link against libboost-signals instead of libboost-signals-mt + * Make debconf templates translateable + * Add missing information to debian/copyright + * Change cgi debconf question from critical to high + * Improve debconf template text + * Add ${misc:Depends} to sinfo binary package + * Increase debhelper compat level to 7 (no changes) + * Remove unneeded manual init script handling + * Remove --quiet option from sinfo.init + * Add versioned dependency on debhelper + * Correct purging and deinstall CGI link + * remove unneeded dh_* commands + * Remove shlibs file. This is not a shared library. + * Conflict with slurm-llnl which also contains /usr/bin/sinfo + * Replace dh_clean -k by dh_prep + * Simplify debian/rules install target + * Install addons as examples under /usr/share/doc/sinfo + * Register HTML documentation with doc-base + + -- Gaudenz Steinlin Sat, 26 Sep 2009 15:00:54 +0200 + +sinfo (0.0.33-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Fri, 12 Dec 2008 06:53:02 +0100 + +sinfo (0.0.32-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Sun, 26 Oct 2008 11:35:45 +0100 + +sinfo (0.0.31-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Tue, 02 Sep 2008 18:49:41 +0200 + +sinfo (0.0.30-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Sat, 30 Aug 2008 20:02:57 +0200 + +sinfo (0.0.29-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Thu, 07 Aug 2008 12:31:40 +0200 + +sinfo (0.0.28-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Thu, 07 Aug 2008 00:41:23 +0200 + +sinfo (0.0.27-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Wed, 06 Aug 2008 17:28:13 +0200 + +sinfo (0.0.26-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Wed, 25 Jun 2008 08:33:15 +0200 + +sinfo (0.0.25-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Tue, 03 Jun 2008 20:02:15 +0200 + +sinfo (0.0.24-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Sun, 15 Jul 2007 00:24:17 +0200 + +sinfo (0.0.23-1) unstable; urgency=low + + * new release + + -- Juergen Rinas Sat, 17 Feb 2007 12:44:44 +0100 + +sinfo (0.0.22-1) unstable; urgency=low + + * new release + + -- juergen Tue, 31 Oct 2006 20:29:45 +0100 + +sinfo (0.0.21-1) unstable; urgency=low + + * new release + + -- juergen Sun, 8 Oct 2006 09:48:58 +0200 + +sinfo (0.0.20-2) unstable; urgency=low + + * tnx to some debian hints by T.Koschnick: + * added libncurses5-dev to Build-Depends + * added debconf to Depends of sinfo + * achanged debconf dependency back to 4 (for sarge users) + + -- juergen Sun, 18 Jun 2006 12:36:53 +0200 + +sinfo (0.0.20-1) unstable; urgency=low + + * changed sinfo start/stop to rc2.d/S80sinfo + rc0,6.d/K10sinfo + (purge and install newly, since I don't force this change) + * switched to debhelper 5 + * split up debian and source changelogs + * new release + + -- Juergen Rinas Wed, 1 Mar 2006 17:09:38 +0100 + +sinfo (0.0.19) unstable; urgency=low + + * fixed FreeBSD 5.3 compilation, tnx S.Buys + * added --help option to sindo and sinfod + + -- Juergen Rinas Tue, 4 Jan 2005 19:22:05 +0100 + +sinfo (0.0.18) unstable; urgency=low + + * debian package: added a RUN_SINFO option in /etc/default/sinfo + respectively /etc/init.d/sinfo (suggestion by M.Feuersaenger) + * Removed scripts sinfodrestartall sshallrup etc. from /sbin. + * install sshallsinfo in /bin and add a small manpage + + -- Juergen Rinas Sun, 12 Dec 2004 22:54:43 +0100 + +sinfo (0.0.17) unstable; urgency=low + + * changes to ensure 32, 64 bit compatibility, avoid long in exchange + structs and use int or float + sorry, but this makes the broadcasting incompatible again + restart your demons + * changed struct users.number from long to int + * changed struct cpustat from long to float (percentage for user, + nice, idle, ...) + * changed struct uptime from long to two ints for days and seconds + + -- Juergen Rinas Thu, 9 Dec 2004 14:13:04 +0100 + +sinfo (0.0.16) unstable; urgency=low + + * added a PPC970 patch to get the right CPU speed from F.Thomas + * added option -Ls so that the sinfo displays optionally the number of + CPUs and their speed beside the hostnames and the system_load. This + is made to be used by people using sinfo for rudimentary load- + balancing. Remark: you can suppress the headlines (normally going to + stderr) of this function by the command sinfo -qLs. + * changed fscanf format string in cpuinfo.cc to hopefully work with + some dual AMD Opterons + * Added information for the linux 2.6er states iowait + (soft/hard)irq + and broadcast them. The changes the format of the UDP packets, so + restart all your demons. + + -- Juergen Rinas Mon, 29 Nov 2004 11:43:21 +0100 + +sinfo (0.0.15) unstable; urgency=low + + * added a monitor for disk activity (linux 2.4.x only) + * in deb package;changed /etc/init.d/sinfo configuration to + file /etc/default/sinfo + * corrected swap and ram in html output + + -- Juergen Rinas Tue, 8 Jun 2004 07:42:30 +0200 + +sinfo (0.0.14) unstable; urgency=low + + * added output of the number of CPUs + + -- Juergen Rinas Thu, 27 Nov 2003 19:23:27 +0100 + +sinfo (0.0.13-1) unstable; urgency=low + + * updated to debian Standards-Version: 3.6.0 + + -- Juergen Rinas Sun, 10 Aug 2003 19:20:21 +0200 + +sinfo (0.0.13) unstable; urgency=low + + * changed bar length from linear to logarithmic scaling based on the + minimum and maximum processor speeds + use 'c' to toggle between "log", "lin" and "full". + (I've added this function because of the big speed differences + in our local pc pool.) + * increased the buffer size for reading /proc/net/dev + * updated man-page + + -- Juergen Rinas Mon, 4 Aug 2003 18:04:47 +0200 + +sinfo (0.0.12) unstable; urgency=low + + * some adaptations for the FreeBSD 5.x series: + the layout of struct kinfo_proc changed from FreeBSD 4 to 5 + + -- Juergen Rinas Tue, 13 May 2003 21:38:40 +0200 + +sinfo (0.0.11) unstable; urgency=low + + * some fixes for gcc-3.2 on FreeBSD + + -- Juergen Rinas Mon, 31 Mar 2003 23:09:29 +0200 + +sinfo (0.0.10) unstable; urgency=low + + * enable-SIMPLE_USER_CACHE for debian binaries + * renamed sinfod.1 to sinfod.8 + * changed interface to get memory informations (linux system) + * Added a broadcast-only mode to sinfod. This may be useful, if you + have some slave/server computers where nobody works interactively. + This is a very robust mode because much functionality of sinfod is + deactivated (collection of UDP packets, server for connection of + sinfo). You may activate this with "--spymode". I've selected this + name to remind you not to uses this mode on computers that are used + interactively - probably your users will not like it. + * support for really big memories and swap space => changed broadcast + format + * changed default nice value of sinfod from 15 to 10 + * changed rsh to ssh in sinfodrestartall + + -- Juergen Rinas Sat, 23 Nov 2002 19:12:01 +0100 + +sinfo (0.0.9) unstable; urgency=low + + * first debianized release + * removed rshall and rshallrup scripts because rsh normally is a + symbolic link to ssh on debian systems + * added long options for gnu/linux and FreeBSD + * added an option for --quiet startup of sinfod + * displaying IP number of a host in the case that there is no name + * some adjustments for gcc 3.2 + * added a -B --bindaddress option to the sinfod to send UDP packets + with a fixed IP address. (useful on systems with many network + interfaces) + * added a small (fork, watchpid) watchdog that restarts the sinfod if + something goes wrong. + This can be activated at compile time with --enable-WATCHDOG + I've added this because some months ago there was a problem with the + LDAP library that made some programs (sinfod) to crash in the case + of LDAP-server failures. + * added --accessaddress, --accessnetmask and --accesslocalhost to + restrict the access to the sinfod + * fixed process percentage calculation on solaris + * changed memory variables from long to unsigned long so that a + maximum of 4GB can be represented (only tested on linux) + + -- Juergen Rinas Thu, 7 Nov 2002 20:25:16 +0100 + +sinfo (0.0.8) unstable; urgency=low + + * add a timeout within select() to reduce the system load of + "konsole" when displaying sinfo's ncurses output. + * do not install the sample cgi-script + but keep it in ./cgi + * increased value: drop hosts from being displayed if they were + not heard for 25 seconds (was: 10 seconds) + * fixed some possible security holes using found by + the code inspection tool "flawfinder" + http://www.dwheeler.com/flawfinder/ + * added broadcasting of the name of the network interface + => broadcasted struct changed + => you have to restart all demons if you update + * fixed query of two separate networks with one "sinfo" + * security fix for the cgi-script: + "it was possible to start programs as cgi-user nobody"! + ... see the cgi-script for details + + -- Juergen Rinas Fri, 28 Dec 2001 23:33:11 +0200 + +sinfo (0.0.7) unstable; urgency=low + + * minor bugs fix: + sinfo segfaults if there isn't an "export HOSTNAME" + * added HTML-output and a sample perl-cgi-script to read + sinfo's informations over the web. + + -- Juergen Rinas Mon, 17 Dec 2001 23:33:11 +0200 + +sinfo (0.0.6) unstable; urgency=low + + * added a parameter to set the nice value of the demon. + * added a simple cache for lookups of the names belonging to the + UIDs in lib/procinfo.cc + ... activate with: ./configure --enable-SIMPLE_USER_CACHE + + -- Juergen Rinas Nov, 12 Mon 2001 23:33:11 +0200 + +sinfo (0.0.5) unstable; urgency=low + + * minor bugs fixed that prevented static linkage of sinfo... + (you can produce a static version of sinfo if + you "export CXXFLAGS=-static" before ./configure ) + * minor bug fix for RedHat 7.1 (and other systems?) + added #include in cpuinfo.cc + tnx "Eric Gravelle" , + "Alan Wilter Sousa da Silva" + * done a port to FreeBSD ( we got a new server at work :-) ) + * changed format of the broadcast scheme... now: less overhead + (incompatible with older versions of sinfo!) + * broadcasting is done in a smarter way: + * If the CPU-Usage doesn't change (variation less 3%).... + the broadcasting frequency will be decreased + down to 6 Bcast per minute. + * If the CPU-Usage changes dramatically + (variation greater than 30%) + the TOP5 process list will be broadcasted right away. + + -- Juergen Rinas Tue, 20 Oct 2001 23:33:11 +0200 + +sinfo (0.0.4) unstable; urgency=low + + * Upper status line excluded from scrolling. + * Connection scheme from sinfo to sinfod changed. + A TCP connection will be kept for all transmissions. + * Sinfo can use connections to multiple sinfods and join the + data. + This may be useful if you want to monitor two different + networks with only one sinfo. + i.e.: sinfo -h host_on.first.computer.net -h host_on.second.computer.net + + -- Juergen Rinas Sun, 26 Aug 2001 23:33:11 +0200 + +sinfo (0.0.3) unstable; urgency=low + + * all internal errors of the information gathering functions + getCpuinfo, getNetload, ... + result in a "false" return value... + no more exit(1)s there! + * SIGPIPE ignored to make the demon more robust! + * System info: RAM and Swap - Space added + + -- Juergen Rinas Sat, 18 Aug 2001 23:33:11 +0200 + +sinfo (0.0.2) unstable; urgency=low + + * broadcast format changed.... + => update on all workstations necessary + * solaris port: + broadcast cpu-usage + * sinfo: highlight local workstation + * sinfo: all hostnames sorted alphabetically + * direct setting of the -h IP-address added + * broadcast CPU-Information + * scale bargraphs according to cpu-power + * first installation on our research cluster for + all users under /usr/local! + + -- Juergen Rinas Sat, 18 Aug 2001 23:33:11 +0200 + +sinfo (0.0.1) unstable; urgency=low + + * first local installation + + -- Juergen Rinas Sat, 18 Aug 2001 23:33:11 +0200 + --- sinfo-0.0.42.orig/debian/po/POTFILES.in +++ sinfo-0.0.42/debian/po/POTFILES.in @@ -0,0 +1,2 @@ +[type: gettext/rfc822deb] sinfo.templates + --- sinfo-0.0.42.orig/debian/po/cs.po +++ sinfo-0.0.42/debian/po/cs.po @@ -0,0 +1,34 @@ +# Czech translation of PO debconf template for package sinfo. +# Copyright (C) 2009 Michal Simunek +# This file is distributed under the same license as the sinfo package. +# Michal Simunek , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-07 14:12+0100\n" +"Last-Translator: Michal Simunek \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Povolit CGI skript pro sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"sinfo obsahuje CGI skript, který poskytuje webové rozhraní k němu poskytuje " +"webové rozhraní. Tento skript je ve výchozím nastavení zakázán, protože může " +"zveřejnit informace o počítači, které nemusíte chtít zveřejnit." --- sinfo-0.0.42.orig/debian/po/da.po +++ sinfo-0.0.42/debian/po/da.po @@ -0,0 +1,38 @@ +# Danish translation sinfo. +# Copyright (C) 2010 sinfo & nedenstående oversættere. +# This file is distributed under the same license as the sinfo package. +# Joe Hansen (joedalton2@yahoo.dk), 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2010-11-11 12:42+0000\n" +"Last-Translator: Joe Hansen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Aktiver skriptet sinfo CGI?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Et CGI-skript er inkluderet, som kan tilbyde en internetgrænseflade til sinfo. " +"Det er som standard deaktiveret, da det kan udsende information om computeren, " +"som ikke er beregnet for offentligheden." + + + + --- sinfo-0.0.42.orig/debian/po/de.po +++ sinfo-0.0.42/debian/po/de.po @@ -0,0 +1,33 @@ +# Translation of sinfo debconf templates to German +# Copyright (C) Helge Kreutzmann , 2009. +# This file is distributed under the same license as the sinfo package. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-04 10:02-0800\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Das Sinfo-CGI-Skript aktivieren?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Für eine Webschnittstelle zu Sinfo ist ein CGI-Skript enthalten. " +"Standardmäßig ist dies deaktiviert, da es Informationen über den Computer " +"veröffentlichen könnte, die nicht für die Öffentlichkeit bestimmt sind." --- sinfo-0.0.42.orig/debian/po/es.po +++ sinfo-0.0.42/debian/po/es.po @@ -0,0 +1,55 @@ +# sinfo po-debconf translation to Spanish +# Copyright (C) 2009 Software in the Public Interest +# This file is distributed under the same license as the sinfo package. +# +# Changes: +# - Initial translation +# Francisco Javier Cuadrado , 2009 +# +# Traductores, si no conocen 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: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-02 9:00+0100\n" +"Last-Translator: Francisco Javier Cuadrado \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" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "¿Desea activar el script CGI de sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Para proporcionar una interfaz web a sinfo, se incluye un script CGI. De " +"forma predeterminada, este script está desactivado ya que puede publicar " +"información de la máquina que no debería ser pública." --- sinfo-0.0.42.orig/debian/po/eu.po +++ sinfo-0.0.42/debian/po/eu.po @@ -0,0 +1,38 @@ +# translation of sinfo_0.0.33-3_eu.po to Basque +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Piarres Beobide , 2009. +# Iñaki Larrañaga Murgoitio , 2009. +msgid "" +msgstr "" +"Project-Id-Version: sinfo_0.0.33-3_eu\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-05 11:12+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Basque \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=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Gaitu sinfo CGI script-a?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"CGI script bat barneratzen da sinfo web interfaze batez hornitzeko. Lehenetsi " +"gisa desgaituta dago partekatu ez den nahi ordenagailuari buruzko " +"informazioa ez argitaratzeko." + --- sinfo-0.0.42.orig/debian/po/fi.po +++ sinfo-0.0.42/debian/po/fi.po @@ -0,0 +1,35 @@ +# Copyright (C) 2009 +# This file is distributed under the same license as the sinfo package. +# +# Esko Arajärvi , 2009. +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-10-26 22:57+0200\n" +"Last-Translator: Esko Arajärvi \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Otetaanko sinfon CGI-komentosarja käyttöön?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Paketti sinfo sisältää verkkokäyttöliittymän tarjoavan CGI-komentosarjan. " +"Se ei ole oletuksena käytössä, koska se saattaisi julkistaa koneeseen " +"liittyviä tietoja, joita ei ole tarkoitettu julkisiksi." --- sinfo-0.0.42.orig/debian/po/fr.po +++ sinfo-0.0.42/debian/po/fr.po @@ -0,0 +1,37 @@ +# French Translation of sinfo debconf template +# Copyright (C) 2009 Debian French l10n Team +# This file is distributed under the same license as the sinfo package. +# Translators: +# Jean-Baka Domelevo Entfellner , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-09 13:33+0100\n" +"Last-Translator: Jean-Baka Domelevo Entfellner \n" +"Language-Team: FRENCH \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: FRANCE\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Faut-il activer le script CGI pour sinfo ?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Un script CGI, inclus dans le paquet, fournit une interface web pour sinfo. " +"Par défaut il est désactivé, car il pourrait rendre publiques des " +"informations touchant à la machine et destinées à rester privées." --- sinfo-0.0.42.orig/debian/po/gl.po +++ sinfo-0.0.42/debian/po/gl.po @@ -0,0 +1,34 @@ +# Copyright (C) 2009 Debian +# This file is distributed under the same license as the sinfo package. +# +# Marce Villarino , 2009. +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-07 20:39+0100\n" +"Last-Translator: Marce Villarino \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Desexa activar o script CGI sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "Inclúese un script CGI que fornece unha interface web para sinfo. " +"Por omisión está desactivado xa que podería publicarse información non " +"pública acerca do ordenador." --- sinfo-0.0.42.orig/debian/po/it.po +++ sinfo-0.0.42/debian/po/it.po @@ -0,0 +1,34 @@ +# ITALIAN TRANSLATION OF SINFO'S PO-DEBCONF FILE. +# COPYRIGHT (C) 2009 THE SINFO'S COPYRIGHT HOLDER +# This file is distributed under the same license as the sinfo package. +# +# Vincenzo Campanella , 2009. +msgid "" +msgstr "" +"Project-Id-Version: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-13 11:53+0100\n" +"Last-Translator: Vincenzo Campanella \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Abilitare lo script CGI di sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Uno script CGI è incluso per fornire un'interfaccia web per sinfo. In " +"modalità predefinita esso è disabilitato, in quanto potrebbe rendere " +"pubbliche informazioni sul computer che non sono destinate al pubblico." --- sinfo-0.0.42.orig/debian/po/ja.po +++ sinfo-0.0.42/debian/po/ja.po @@ -0,0 +1,33 @@ +# Japanese translation of sinfo debconf templates. +# Copyright (C) 2009 Hideki Yamane +# This file is distributed under the same license as sinfo package. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-02 06:52+0900\n" +"Last-Translator: Hideki Yamane (Debian-JP) \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "sinfo の CGI インターフェイスを有効にしますか?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"sinfo へのウェブインターフェイスを提供する CGI スクリプトが含まれています。" +"これは、公にはしたくないあなたのコンピュータに関する情報を公開してしまうかも" +"しれないので、デフォルトでは無効にされています。" --- sinfo-0.0.42.orig/debian/po/pt.po +++ sinfo-0.0.42/debian/po/pt.po @@ -0,0 +1,38 @@ +# Translation of sinfo's debconf messages for Portuguese +# +# Copyright (C) 2009 the sinfo's copyright holder +# This file is distributed under the same license as the sinfo package. +# +# Américo Monteiro , 2009. +msgid "" +msgstr "" +"Project-Id-Version: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-01 19:55+0000\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Activar o script CGI do sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Está incluído um script CGI para disponibilizar uma interface web para o " +"sinfo. Vem desactivada por predefinição porque pode publicar informação " +"acerca do computador que não é destinada ao público." + --- sinfo-0.0.42.orig/debian/po/ro.po +++ sinfo-0.0.42/debian/po/ro.po @@ -0,0 +1,34 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-01 23:45+0200\n" +"Last-Translator: Ionel Mugurel Ciobîcă \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Activați scriptul CGI de la sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Un script CGI este inclus, pentru a oferi o interfața web pentru sinfo." +"Este dezactivat implicit pentru că ar putea publica informații despre" +"computer neintenționate să fie publice." --- sinfo-0.0.42.orig/debian/po/ru.po +++ sinfo-0.0.42/debian/po/ru.po @@ -0,0 +1,36 @@ +# 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: sinfo 0.0.33-3\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-03 18:51+0300\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 +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Включить CGI-сценарий sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"В пакете sinfo есть сценарий CGI, который предоставляет веб-интерфейс для " +"sinfo. По умолчанию, он выключен, так как может выдавать информацию " +"о вашем компьютере, которую вы бы не хотели делать доступной всем." --- sinfo-0.0.42.orig/debian/po/sv.po +++ sinfo-0.0.42/debian/po/sv.po @@ -0,0 +1,33 @@ +# Swedish translation of tftpd-hpa debconf templates. +# Copyright (C) 2009 Martin Bagge +# This file is distributed under the same license as the tftpd-hpa package. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2009-11-16 23:08+0100\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Aktivera CGI-skriptet sinfo?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" +"Ett CGI-skript inkluderas för att presentera ett webbaserat gränssnitt för " +"sinfo. Det är inte aktiverat som standard eftersom det kan publicera " +"information om systemet som inte var menat för allmän beskådan." --- sinfo-0.0.42.orig/debian/po/templates.pot +++ sinfo-0.0.42/debian/po/templates.pot @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "" +"A CGI script is included, to provide a web interface for sinfo. It is " +"disabled by default as it might publish information about the computer not " +"intended to be public." +msgstr "" --- sinfo-0.0.42.orig/debian/po/vi.po +++ sinfo-0.0.42/debian/po/vi.po @@ -0,0 +1,30 @@ +# Vietnamese translation for sinfo. +# Copyright © 2010 Free Software Foundation, Inc. +# Clytie Siddall , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: sinfo\n" +"Report-Msgid-Bugs-To: sinfo@packages.debian.org\n" +"POT-Creation-Date: 2009-10-26 22:54+0200\n" +"PO-Revision-Date: 2010-04-01 00:35+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.8\n" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "Enable the sinfo CGI script?" +msgstr "Bật văn lệnh CGI sinfo ?" + +#. Type: boolean +#. Description +#: ../sinfo.templates:2001 +msgid "A CGI script is included, to provide a web interface for sinfo. It is disabled by default as it might publish information about the computer not intended to be public." +msgstr "Gồm có một văn lệnh CGI để cung cấp một giao diện Web cho sinfo. Nó bị tắt theo mặc định vì nó có thể xuất bản thông tin về máy tính mà không dự định công bố." +