debian/0000775000000000000000000000000012271422012007161 5ustar debian/ltsp-cluster-agent.upstart0000664000000000000000000000023212271421221014340 0ustar description "LTSP Agent" author "Stephane Graber " start on runlevel [2345] stop on runlevel [!2345] respawn exec ltsp-agent debian/source/0000775000000000000000000000000012271422012010461 5ustar debian/source/format0000664000000000000000000000001412271421221011670 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000213712271421221011120 0ustar This package was debianized by Stéphane Graber on Thu Nov 4 10:24:56 EDT 2010 It was downloaded from https://launchpad.net/ltsp-cluster/+download Upstream Authors: Stéphane Graber Vincent Vinet Copyright: Copyright (C) 2009-2010 Revolution Linux Inc. License: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You can find the license on Debian systems in the file /usr/share/common-licenses/GPL-2 The Debian packaging is Copyright 2010, Stéphane Graber and is licensed under the GPL, see `/usr/share/common-licenses/GPL-2'. debian/agent.conf0000664000000000000000000000026612271421221011133 0ustar [server] bindaddr=0.0.0.0 bindport=8080 sslcert=/etc/ltsp/agent.pem sslkey=/etc/ltsp/agent.pem plugindir=plugins/ [auth] [[admin]] password=d033e22ae348aeb5660fc2140aec35850c4da997 debian/changelog0000664000000000000000000000351412271421446011050 0ustar ltsp-cluster-agent (0.8-1ubuntu2) trusty; urgency=medium * Port to dh_python2. -- Dimitri John Ledkov Mon, 27 Jan 2014 09:13:10 +0000 ltsp-cluster-agent (0.8-1ubuntu1) precise; urgency=low * Ubuntu Upload -- Jonathan Carter Sun, 22 Jan 2012 16:13:35 +0200 ltsp-cluster-agent (0.8-0ubuntu1~ppa1~precise1) precise; urgency=low * New upstream release (0.8) * Revert commit 42 (duplicate call to start_thread) -- Stéphane Graber Sun, 01 Jan 2012 16:36:59 +0100 ltsp-cluster-agent (0.7-0ubuntu1~ppa1~precise1) precise; urgency=low * New upstream release (0.7) * Fix duplicate call to start_thread * Add IPv6 support -- Stéphane Graber Sun, 01 Jan 2012 15:40:23 +0100 ltsp-cluster-agent (0.6-0ubuntu1~ppa1~natty1) natty; urgency=low * New upstream release (0.6) * Add support for python2.5 and python2.7 -- Stéphane Graber Fri, 11 Feb 2011 13:22:16 -0500 ltsp-cluster-agent (0.5-0ubuntu1~ppa1~natty1) natty; urgency=low * New upstream release (0.5) -- Stéphane Graber Wed, 01 Dec 2010 15:54:43 -0500 ltsp-cluster-agent (0.4-0ubuntu1~ppa1~natty1) natty; urgency=low * New upstream release (0.4) -- Stéphane Graber Tue, 30 Nov 2010 10:49:21 -0500 ltsp-cluster-agent (0.3-0ubuntu1~ppa1~natty3) natty; urgency=low * New upstream release (0.3) -- Stéphane Graber Fri, 12 Nov 2010 10:49:18 -0500 ltsp-cluster-agent (0.2-0ubuntu1~ppa1~natty1) natty; urgency=low * New upstream release (0.2) -- Stéphane Graber Sat, 06 Nov 2010 16:20:14 -0400 ltsp-cluster-agent (0.1-0ubuntu1~ppa1~natty3) natty; urgency=low * Initial Release -- Stéphane Graber Thu, 04 Nov 2010 10:21:39 -0400 debian/control0000664000000000000000000000131212271421266010573 0ustar Source: ltsp-cluster-agent Section: misc Priority: optional Maintainer: Jonathan Carter Build-Depends: debhelper (>= 7.0), python, dh-python, python-configobj Standards-Version: 3.9.2 Homepage: http://www.revolutionlinux.com X-Python-Version: >= 2.3 Package: ltsp-cluster-agent Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python, python-configobj, python-openssl Description: Generic Python daemon for LTSP (core package) The LTSP-Cluster agent is a general purpose daemon in python used on both application servers and thin clients. It features a plugin infrastructure and answers request on secure XML-RPC (over https). . This package contains the daemon itself. debian/ltsp-agent.10000664000000000000000000000146212271421221011325 0ustar .TH "ltsp-agent" "1" "20101104" "Stephane Graber" "" .SH "NAME" ltsp-agent \(em Agent for LTSP-Cluster. .SH "SYNOPSIS" .PP \fBltsp-agent\fR .SH "DESCRIPTION" .PP \fBltsp-agent\fR is a daemon running a set of plugins (provided by other packages) and used as a base for the new ltsp-cluster infrastructure. .PP The configuration is usually stored in /etc/ltsp/agent.conf The ssl certificate is usually stored in /etc/ltsp/agent.pem .SH "AVAILABILITY" .PP \fBltsp-agent\fR is part of the \fBltsp-cluster-agent\fP package and the latest versions are available in source form from \fIhttps://launchpad.net/ltsp-cluster\fR. .SH "MAN PAGE AUTHOR" .PP Copyright 2010 Stephane Graber , distributed under the terms of the GNU General Public License version 2 or any later version. debian/ltsp-cluster-agent.init0000664000000000000000000000212612271421221013605 0ustar #!/bin/sh ### BEGIN INIT INFO # Provides: ltsp-cluster-agent # Required-Start: $all # Required-Stop: $all # Should-Start: $local_fs # Should-Stop: $local_fs # Default-Start: 2 3 4 5 # Default-Stop: 1 # Short-Description: LTSP agent # Description: Generic python daemon for LTSP (core package) ### END INIT INFO set -e PATH=/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/ltsp-agent PIDFILE=/var/run/ltsp-agent.pid NAME=ltsp-agent test -x $DAEMON || exit 0 . /lib/lsb/init-functions case "$1" in start) log_begin_msg "Starting ltsp-cluster-agent..." start-stop-daemon --start --make-pidfile --pidfile $PIDFILE --name $NAME --startas $DAEMON --background >/dev/null 2>&1 || log_end_msg 1 log_end_msg 0 ;; stop) log_begin_msg "Stopping ltsp-cluster-agent..." start-stop-daemon --stop --quiet --oknodo --pidfile $PIDFILE --retry 30 >/dev/null 2>&1 log_end_msg 0 ;; reload|restart|force-reload) $0 stop || true $0 start ;; *) log_success_msg "Usage: /etc/init.d/ltsp-cluster-agent {start|stop|restart|reload|force-reload}" exit 1 ;; esac exit debian/rules0000775000000000000000000000016412271421275010254 0ustar #!/usr/bin/make -f %: dh $@ --with python2 get-orig-source: uscan --force-download --repack --rename --destdir . debian/watch0000664000000000000000000000021212271421221010206 0ustar version=3 # launchpad https://launchpad.net/ltsp-cluster/+download http://launchpad.net/ltsp-cluster/.*/ltsp-cluster-agent-(.*)\.tar\.gz debian/ltsp-cluster-agent.install0000664000000000000000000000007412271421221014310 0ustar plugins /usr/share/ltsp-agent/ debian/agent.conf /etc/ltsp/ debian/compat0000664000000000000000000000000212271421221010360 0ustar 7 debian/ltsp-cluster-agent.manpages0000664000000000000000000000002412271421221014430 0ustar debian/ltsp-agent.1