--- ltsp-cluster-accountmanager-2.0.4.orig/debian/changelog +++ ltsp-cluster-accountmanager-2.0.4/debian/changelog @@ -0,0 +1,45 @@ +ltsp-cluster-accountmanager (2.0.4-0ubuntu3) vivid; urgency=medium + + * Add systemd unit. + + -- Martin Pitt Thu, 15 Jan 2015 15:12:28 +0100 + +ltsp-cluster-accountmanager (2.0.4-0ubuntu2) utopic; urgency=high + + * No change rebuild against upstart-job dependency removal. + + -- Dimitri John Ledkov Fri, 09 May 2014 14:02:27 +0100 + +ltsp-cluster-accountmanager (2.0.4-0ubuntu1) saucy; urgency=low + + * New upstream release. + + -- Stéphane Graber Wed, 01 May 2013 16:48:54 -0700 + +ltsp-cluster-accountmanager (2.0.3-0ubuntu2) maverick; urgency=low + + * Move init scripts to upstart (fix boot race condition) + + -- Marc Gariépy Fri, 17 Sep 2010 13:59:40 -0400 + +ltsp-cluster-accountmanager (2.0.3-0ubuntu1) karmic; urgency=low + + * New upstream bugfix release + * Fix useradd return code check + + -- Stéphane Graber Tue, 15 Sep 2009 23:04:15 -0400 + +ltsp-cluster-accountmanager (2.0.2-0ubuntu1) karmic; urgency=low + + * New upstream bugfix release + * Fix support of min and max group + * Add group with useradd instead of adduser + * Handle useradd return code + + -- Stéphane Graber Tue, 15 Sep 2009 15:11:47 -0400 + +ltsp-cluster-accountmanager (2.0.1-0ubuntu1) karmic; urgency=low + + * Initial Release (LP: #394416) + + -- Jonathan Carter Fri, 10 Jul 2009 22:04:01 +0200 --- ltsp-cluster-accountmanager-2.0.4.orig/debian/compat +++ ltsp-cluster-accountmanager-2.0.4/debian/compat @@ -0,0 +1 @@ +6 --- ltsp-cluster-accountmanager-2.0.4.orig/debian/control +++ ltsp-cluster-accountmanager-2.0.4/debian/control @@ -0,0 +1,16 @@ +Source: ltsp-cluster-accountmanager +Section: misc +Priority: optional +Maintainer: Ubuntu MOTU Developers +Build-Depends: debhelper (>=6.0), cdbs, dh-systemd +Standards-Version: 3.8.3 +Homepage: http://www.revolutionlinux.com + +Package: ltsp-cluster-accountmanager +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, python, perl-modules, python-crypto +Description: Account creation and management daemon for LTSP + LTSP is the Linux Terminal Server Project. + . + LTSP Cluster Account Manager is a daemon that can create accounts + for auto-login LTSP clients. --- ltsp-cluster-accountmanager-2.0.4.orig/debian/copyright +++ ltsp-cluster-accountmanager-2.0.4/debian/copyright @@ -0,0 +1,32 @@ +This package was debianized by Jonathan Carter + on Wed, 01 Jul 2009 19:58:57 +0200. + +It was downloaded from https://launchpad.net/ltsp-cluster/+download + +Upstream Author: + + Stéphane Graber + +Copyright: + + Copyright (C) 2008-2009 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 2009, Jonathan Carter + and is licensed under the GPL, +see `/usr/share/common-licenses/GPL-2'. --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.1 +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.1 @@ -0,0 +1,28 @@ +.TH "ltsp-cluster-accountmanager" "1" "20090701" "Stephane Graber" "" +.SH "NAME" +ltsp-cluster-accountmanager \(em Session management daemon for LTSP-Cluster. + +.SH "SYNOPSIS" +.PP +\fBltsp-cluster-accountmanager\fR + +.SH "DESCRIPTION" +.PP +\fBltsp-cluster-accountmanager\fR is a daemon used for temporary account +creation, management and for remote management of a LTSP-Cluster application +server. + +.PP + +The configuration is usually stored in /etc/ltsp/accountmanager.conf + +.SH "AVAILABILITY" +.PP +\fBltsp-cluster-accountmanager\fR is part of \fBltsp-clust-accountmanager\fP +package and the latest versions are available in source form from +\fIhttps://launchpad.net/ltsp-cluster\fR. + +.SH "MAN PAGE AUTHOR" +.PP +Copyright 2009 Stephane Graber , distributed under +the terms of the GNU General Public License version 2 or any later version. --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.manpages +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.manpages @@ -0,0 +1 @@ +debian/ltsp-cluster-accountmanager.1 --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.postinst +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.postinst @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ ! `getent group autologin` ]; then + addgroup --system autologin +fi +if [ "$1" = "configure" ]; +then + mkdir -p /var/lib/ltsp-cluster-accountmanager/ +fi +#DEBHELPER# --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.postrm +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.postrm @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +if [ "$1" = purge ]; then + delgroup autologin + rm -Rf /var/lib/ltsp-cluster-accountmanager/ +fi + +#DEBHELPER# --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.service +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.service @@ -0,0 +1,10 @@ +[Unit] +Description=LTSP cluster account manager +Wants=network-online.target +After=network-online.target + +[Service] +ExecStart=/usr/bin/ltsp-cluster-accountmanager /etc/ltsp/accountmanager.conf + +[Install] +WantedBy=multi-user.target --- ltsp-cluster-accountmanager-2.0.4.orig/debian/ltsp-cluster-accountmanager.upstart +++ ltsp-cluster-accountmanager-2.0.4/debian/ltsp-cluster-accountmanager.upstart @@ -0,0 +1,12 @@ +# ltsp-cluster - Accountmanager +# + +description "ltsp-cluster-accountmanager" +author "Marc Gariépy " + +start on net-device-up and local-filesystems and (started dbus) +stop on runlevel[016] + +respawn + +exec /usr/bin/ltsp-cluster-accountmanager /etc/ltsp/accountmanager.conf --- ltsp-cluster-accountmanager-2.0.4.orig/debian/rules +++ ltsp-cluster-accountmanager-2.0.4/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/class/makefile.mk +include /usr/share/cdbs/1/rules/debhelper.mk +DEB_MAKE_INSTALL_TARGET := install DESTDIR=$(CURDIR)/debian/ltsp-cluster-accountmanager/ + +common-binary-post-install-indep:: + dh_systemd_enable + dh_systemd_start + +get-orig-source: + uscan --force-download --repack --rename --destdir . + --- ltsp-cluster-accountmanager-2.0.4.orig/debian/watch +++ ltsp-cluster-accountmanager-2.0.4/debian/watch @@ -0,0 +1,4 @@ +version=3 + +# launchpad +https://launchpad.net/ltsp-cluster/+download http://launchpad.net/ltsp-cluster/.*/ltsp-cluster-accountmanager-(.*)\.tar\.gz