--- ltspfs-0.6.orig/debian/watch +++ ltspfs-0.6/debian/watch @@ -0,0 +1,13 @@ +# ltspfs doesn not release tarballs, though the current version can be found by +# looking for AC_INIT in the following URL: +# http://bazaar.launchpad.net/~ltsp-upstream/ltspfs/ltspfs-trunk/annotate/head:/configure.ac + +version=3 + +# check versions uploaded to other distros: + +# ubuntu +http://archive.ubuntu.com/ubuntu/pool/main/l/ltspfs/ltspfs_(.*)\.orig\.tar\.gz + +# fedora +http://kojipkgs.fedoraproject.org/packages/ltspfs/ ([0-9].*)/ --- ltspfs-0.6.orig/debian/compat +++ ltspfs-0.6/debian/compat @@ -0,0 +1 @@ +7 --- ltspfs-0.6.orig/debian/copyright +++ ltspfs-0.6/debian/copyright @@ -0,0 +1,44 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: LTSP upstream team +Upstream-Name: ltspfs +Upstream-Source: http://bazaar.launchpad.net/~ltsp-upstream/ltspfs/ltspfs-trunk/ + +Files: debian/* +Copyright: 2006 Scott Balneaves + 2006-2009 Vagrant Cascadian +License: GPL-2+ + +Files: src/ltspfsd_functions.c +Copyright: Scott Balneaves 2006-2007 +License: GPL-2+ + +Files: src/lbmount.c +Copyright: Scott Balneaves 2006-2007 + Martin Pitt, 2006 + Vagrant Cascadian 2008 + Warren Togami 2008 +License: GPL-2+ + +Files: src/ltspfsd.c +Copyright: Scott Balneaves 2005-2007 + Gideon Romm 2009 +License: GPL-2+ + +Files: src/common.c, src/ltspfsd_functions.c +Copyright: Scott Balneaves 2005-2007 +License: GPL-2+ + +Files: src/cdpinger.c +Copyright: Scott Balneaves 2007-2008 + Vagrant Cascadian 2008 + Gideon Romm 2009 +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; either version 2 of + the License, or (at your option) any later version. + + On Debian and Ubuntu systems, a copy of the GNU General Public License version + 2 may be found in the file /usr/share/common-licenses/GPL-2. --- ltspfs-0.6.orig/debian/ltspfs.install +++ ltspfs-0.6/debian/ltspfs.install @@ -0,0 +1,6 @@ +usr/bin/ltspfs +usr/bin/lbmount +usr/sbin/ltspfsmounter +usr/share/man/man1/ltspfs.1 +usr/share/man/man1/lbmount.1 +usr/share/man/man1/ltspfsmounter.1 --- ltspfs-0.6.orig/debian/rules +++ ltspfs-0.6/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +LSB_RELEASE_ID ?= $(shell lsb_release --short --id) +ifeq (Ubuntu,$(LSB_RELEASE_ID)) + INSTALLUDEV_OPTS="--priority=80" +endif + +build: build-stamp +build-stamp: + dh build + touch build-stamp + +clean: + dh clean + +install: + dh install + +binary-indep: install + dh binary-indep + +binary-arch: install + dh --before dh_installudev binary-arch + cp udev/88-ltsp.rules debian/ltspfsd.udev + dh_installudev $(INSTALLUDEV_OPTS) + rm debian/ltspfsd.udev + dh --after dh_installudev binary-arch + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install --- ltspfs-0.6.orig/debian/ltspfsd.install +++ ltspfs-0.6/debian/ltspfsd.install @@ -0,0 +1,3 @@ +usr/share/ldm/rc.d/X10-delayed-mounter +usr/share/ldm/rc.d/X98-delayed-mounter +usr/share/ltsp/xinitrc.d/I05-set-ltspfs_token --- ltspfs-0.6.orig/debian/ltspfsd-core.install +++ ltspfs-0.6/debian/ltspfsd-core.install @@ -0,0 +1,9 @@ +usr/bin/ltspfsd +usr/sbin/cdpinger +usr/sbin/ltspfs_mount +usr/sbin/ltspfs_umount +lib/udev/ltspfs_entry +usr/share/man/man1/ltspfsd.1 +usr/share/man/man1/cdpinger.1 +usr/share/man/man1/ltspfs_mount.1 +usr/share/man/man1/ltspfs_umount.1 --- ltspfs-0.6.orig/debian/NEWS.Debian +++ ltspfs-0.6/debian/NEWS.Debian @@ -0,0 +1,15 @@ +ltspfs (0.5.11-3) unstable; urgency=low + + * the mechanism for enabling local disks changed in version 0.5.6-1. set + LOCALDEV_DENY_INTERNAL_DISKS=false in /etc/lts.conf to enable local disks. + + -- Vagrant Cascadian Wed, 22 Apr 2009 11:37:06 -0700 + +ltspfs (0.5.0~) unstable; urgency=low + + * automatic mounting of non-removable devices is now disabled by default + to enable, in /etc/udev/rules.d/*ltspfsd.rules, remove ATTRS{removable}==1 + from the appropriate lines. see http://bugs.debian.org/432024 for more + information. + + -- Vagrant Cascadian Thu, 10 Jan 2008 13:19:04 -0800 --- ltspfs-0.6.orig/debian/ltspfsd-core.links +++ ltspfs-0.6/debian/ltspfsd-core.links @@ -0,0 +1,2 @@ +/lib/udev/ltspfs_entry /lib/udev/add_fstab_entry +/lib/udev/ltspfs_entry /lib/udev/remove_fstab_entry --- ltspfs-0.6.orig/debian/ltspfs.postinst +++ ltspfs-0.6/debian/ltspfs.postinst @@ -0,0 +1,40 @@ +#!/bin/sh +# postinst script for ltspfs +# +# 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 +# + +case "$1" in + configure) + chmod 4755 /usr/bin/lbmount + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 --- ltspfs-0.6.orig/debian/README.Debian +++ ltspfs-0.6/debian/README.Debian @@ -0,0 +1,7 @@ +ltspfs for Debian/Ubuntu +------------------------ + +This is the LTSP Filesystem, or ltspfs, a filesystem for use with the +LTSP project. + + -- Scott Balneaves, Scott Balneaves , Mon, 3 Sep 2007 --- ltspfs-0.6.orig/debian/changelog +++ ltspfs-0.6/debian/changelog @@ -0,0 +1,439 @@ +ltspfs (0.6-1) unstable; urgency=low + + * New upstream version: + - Implement a mode that doesn't require authorization for LTSP localapps, + rdesktop and kiosk screen scripts. + - Optimize to use basic shell features instead of calling external + binaries. + - Add syslog support for cdpinger. + - Make delayed-mounter work for LDM localapps. + - Try to avoid multiple parallel calls to pgrep by writing a pid file. + - Rewrite udev scripts to distinguish between udev events for CD device + creation and removal and events triggered by cdpinger detecting CD + insertion and removal. + - Change ownership of /media/USER mount to only be readable by the user. + - Force unmounting of ltspfs filesystems when the device is removed. + + * debian/control: + - Uploaders: use new email address: vagrant@debian.org. + - Update Standards-Version to 3.8.4, no changes necessary. + + -- Vagrant Cascadian Wed, 17 Feb 2010 19:04:41 -0800 + +ltspfs (0.5.14-1) unstable; urgency=low + + * New upstream version: + - Fix mount point access when the users are in the same primary group. + - Fix localapp mount when remote and local user doesn't have matching case. + + * Update package descriptions to differentiate between ltspfsd and + ltspfsd-core. + + * Switch to using bzr.debian.org for the VCS-Browser line. + + * Update Standards-Version to 3.8.3, no changes necessary. + + * Remove Otavio Salvador from uploaders, at Otavio's request. many thanks for + all previous and future contributions! + + -- Vagrant Cascadian Sun, 17 Jan 2010 00:55:33 -0800 + +ltspfs (0.5.13-1) unstable; urgency=low + + * new upstream version: + - fixes to local mounts + + find ldm's Xauthority in /var/run. + + support ldm Xauthority in a sub-dir. + + mount in /media/root if local mounting is configured. + + only run mount for localapps if user's home dir is mounted via sshfs. + + drop delayedmounter from xinitrc.d, as udev scripts should be + sufficient now. + + relocate delayed-mounter ldm hooks so they run after the user is added + to /etc/passwd, and before the user is removed from /etc/passwd. + + -- Vagrant Cascadian Fri, 17 Jul 2009 12:10:56 +0200 + +ltspfs (0.5.12-1) unstable; urgency=low + + * new upstream version: + - remove entry in ltspfs_fstab before unmounting device, to prevent other + processes from mounting it. + + -- Vagrant Cascadian Sun, 07 Jun 2009 22:29:43 -0700 + +ltspfs (0.5.11-3) unstable; urgency=low + + * upload to unstable + + -- Vagrant Cascadian Wed, 15 Apr 2009 11:41:03 -0700 + +ltspfs (0.5.11-2) experimental; urgency=low + + * split ltspfsd and cdpinger into ltspfsd-core package, making it possible to + install ltspfsd-core without having to install udev rules, or pull in + recommends on ldm. (Closes: #454478) + + -- Vagrant Cascadian Sun, 05 Apr 2009 13:34:26 -0700 + +ltspfs (0.5.11-1) unstable; urgency=low + + * new upstream version: + - Add support for local ltspfs mounts with localapps. + - Do not remove ltspfs mount on "already mounted" errors, as these errors + may occur silently with multiple ltspfsmounters. + - Avoid exporting a variable with spaces that may cause ltspfs mount to + fail. + + * debian/copyright: update and switch to machine readable copyright format + + * debian/control: update Standards-Version to 3.8.1, no changes necessary. + + -- Vagrant Cascadian Fri, 03 Apr 2009 13:46:39 -0700 + +ltspfs (0.5.9-1) unstable; urgency=low + + * new upstream version: + - support mounting local devices on the thin client itself, for non-LDM + environments (such as rdesktop). + - add LOCALDEV_MOUNT_OPTIONS parameter to adjust the default mount options + from local devices. + - add default support for utf8 character filenames if the local device is + vfat, iso9660, or ntfs. + - default to mounting CDs as iso9660 rather than "auto" to ensure that + utf8 filenames work. + - call ltspfs_entry remove if we fail to mount the device, so we don't end + up with an ltspfsmount to tmpfs. + - handle two devices with same label (such as inserting two identically + labeled USB sticks). + - updated udev rules. + + [ Vagrant Cascadian ] + * use upstream udev rules, as Debian's variant was merged upstream. + + [ Ryan Niebur ] + * clean up debian/rules file by switching to debhelper 7. + + -- Vagrant Cascadian Sun, 22 Feb 2009 20:35:08 -0800 + +ltspfs (0.5.8-1) experimental; urgency=low + + * new upstream version: + - ensure that the ltspfs authentication token exists in ldm login script, + even when ltspfsd hasn't started yet, so that devices plugged in later + will still be able to mount. + + * debian/watch: poll fedora and ubuntu for newer versions + + -- Vagrant Cascadian Fri, 12 Dec 2008 12:39:59 -0800 + +ltspfs (0.5.7-1) experimental; urgency=low + + * new upstream version: + - fix bug in LOCALDEV_DENY causing USB disks to fail to mount + + -- Vagrant Cascadian Wed, 03 Dec 2008 09:32:49 -0800 + +ltspfs (0.5.6-1) experimental; urgency=low + + * new upstream version: + - implemented more flexible rules to deny devices (LOCALDEV_DENY) + + * simplified udev rules, as LOCALDEV_DENY can more flexibly handle what was + previously done in udev + * debian/watch: add comments explaining how to find the current version + * debian/control: use proper VCS-* headers + + -- Vagrant Cascadian Thu, 20 Nov 2008 21:39:05 -0800 + +ltspfs (0.5.5-1) experimental; urgency=low + + * new upstream version + * sync with ubuntu + * conditionally install udev rules at priority 80 on Ubuntu + + -- Vagrant Cascadian Sun, 19 Oct 2008 11:05:23 -0700 + +ltspfs (0.5.5-0ubuntu1) intrepid; urgency=low + + * new upstream version: + * Fix a segfault in cdpinger + * Remove manpages from packaging as they now are upstream + + -- Stéphane Graber Fri, 10 Oct 2008 19:34:18 -0400 + +ltspfs (0.5.3-3) unstable; urgency=low + + * apply patch to fix cdpinger segfault + * add Ryan Niebur to Uploaders + + -- Vagrant Cascadian Sat, 01 Nov 2008 17:21:32 -0700 + +ltspfs (0.5.3-2ubuntu1) intrepid; urgency=low + + * Set ltspfs rules to 80 instead of 50. (LP: #273147) + + -- Stéphane Graber Tue, 07 Oct 2008 13:30:55 -0400 + +ltspfs (0.5.3-2) unstable; urgency=low + + * added manpages for cdpinger, ltspfs_mount and ltspfs_umount + * remove dpatch from debian/rules and drop build-dependency, as there are no + patches. + + -- Vagrant Cascadian Mon, 25 Aug 2008 15:27:30 -0700 + +ltspfs (0.5.3-1) unstable; urgency=low + + * new upstream version: + + don't mount swap partitions + + name CDROM devices such that icon will appear to be a CDROM. + + respect LTSP LOCALDEV setting when adding or removing devices + + start cdpinger and ltspfsd from udev scripts + + * updated/added udev rules to support: + - usb floppy drives (Closes: #415460) + - external usb hard drives + - CDROM drives + - commented out rule for internal hard drives + + * updated standards-version to 3.8.0, no changes necessary. + + -- Vagrant Cascadian Thu, 26 Jun 2008 09:58:55 -0700 + +ltspfs (0.5.2-1) unstable; urgency=low + + * new upstream version: + - merge add_fstab_entry and remove_fstab_entry into ltspfs_entry + - use more restrictive permissions on /media/$username + + * updated udev rules to use ltspfs_entry + * symlink add_fstab_entry and remove_fstab_entry to ltspfs_entry for + backwards compatibility + + -- Vagrant Cascadian Sat, 03 May 2008 22:49:28 -0700 + +ltspfs (0.5.1-1) unstable; urgency=low + + * new upstream version: + - fix local devices when used with ldm's direct x mode enabled + * debian/control: add Vcs-Bzr and Vcs-Browser fields + * remove patch to fix ldm-delayed-mounter (applied upstream) + + -- Vagrant Cascadian Sat, 19 Apr 2008 21:33:52 -0500 + +ltspfs (0.5.0~bzr20080303-1) unstable; urgency=low + + * new upstream release from bzr: + - use /sbin/udevadm if present, fall back to udevinfo (Closes: #456327) + - implement hook scripts for ltspfs + - add example hook script to add icons on KDE desktops. + thanks to Klaus Ade Johnstad (Closes: #459369) + + -- Vagrant Cascadian Sun, 2 Mar 2008 21:39:24 -0800 + +ltspfs (0.5.0~bzr20080109-3) unstable; urgency=low + + * fix typo in udev rules causing usb sticks to fail to mount + + -- Vagrant Cascadian Sun, 20 Jan 2008 14:50:59 -0800 + +ltspfs (0.5.0~bzr20080109-2) unstable; urgency=low + + * debian/control: + - fix FTBFS: add build dependency on libglib2.0-dev + - allow debian-maintainer uploads: + + XS-DM-Upload-Allowed: yes + * really add NEWS.Debian + + -- Vagrant Cascadian Mon, 14 Jan 2008 15:15:32 -0800 + +ltspfs (0.5.0~bzr20080109-1) unstable; urgency=low + + * new upstream from bzr release: + - use "mount --move" instead of "mount --bind", so only a single + mountpoint appears (Closes: #443200) + - drop hard-coded DISPLAY variable in ltspfsmounter which caused mounts to + only work for the first user logged into a server + - rewrite of cdpinger in C + + handles when ltspfs_fstab is missing (Closes: #432669) + - install ldm hooks for ltspfs (formerly in ldm package) + + * only add removable devices in default ltspfsd udev rules. thanks to Petter + Reinholdtsen and Gideon Romm (Closes: 432024) + - added NEWS.Debian explaining how to re-enable non-removable devices. + + * fix bug in ldm's delayed mounter hook + + * debian/copyright: + - updated URLs for bzr branches + - updated copyright notices + + * debian/control: + - updated to Standards-Version 3.7.3, no changes needed. + - Conflict with versions of ldm that shipped hooks for ltspfs + - remove from Uploaders, thanks for all previous work: + Matt Zimmerman (at request) + Gustavo Franco (at request) + Michael Vogt (possibly mistakenly added, no activity) + + * debian/rules: + fix lintian warning: debian-rules-ignores-make-clean-error + + -- Vagrant Cascadian Thu, 10 Jan 2008 15:41:19 -0800 + +ltspfs (0.5+debian1) unstable; urgency=low + + * new upstream + - works with new ldm + * fixes to cdpinger: + - call ssh with the socket in /var/run/ + - get call from subprocess + (Closes: #418144) + + -- Vagrant Cascadian Tue, 18 Sep 2007 09:55:58 -0700 + +ltspfs (0.5-0ubuntu1) gutsy; urgency=low + + * Fixed bugs, eliminated the delayed mounter, bumped to version 0.5 + + -- Scott Balneaves Mon, 03 Sep 2007 00:33:44 -0500 + +ltspfs (0.4.3+debian3) unstable; urgency=medium + + urgency medium as it fixes RC bug + * sync with upstream: + - fix mutex release bug + - edit /var/run/ltspfs_fstab instead of /etc/fstab (Closes: #427773) + * cdpinger depends on lsof, thanks to Bernd Herd (Closes: #410661) + * use dh_installudev to install udev rules for ltspfsd + + -- Vagrant Cascadian Fri, 15 Jun 2007 20:39:09 +0100 + +ltspfs (0.4.3+debian2) unstable; urgency=low + + * updated debian/copyright + * install appropriate udev rules for debian + + -- Vagrant Cascadian Wed, 27 Dec 2006 05:20:35 -0700 + +ltspfs (0.4.3+debian1) unstable; urgency=low + + * build for Debian + * Maintainer: LTSP Debian/Ubuntu Maintainers + + * Uploaders: same as ltsp + Scott Balneaves + * drop un-used example: watch.ex + * drop README.Debian (contained little useful information) + * remove lintian overrides, as we should be reminded to provide man pages. + * treat udev 88-ltsp.rules file as a conffile: + - remove do-nothing postinst and prerm scripts. + * change policy-violating editing of /etc/modules to a warning message. + * add_fstab_entry: + - grab filesystem type from environment if not specified on the + commandline + - exit if filesystem type is not defined + - use basename of device, in case the full device is passed. + * merge with upstream: + - drop all fuse module handling code from ltspfs.postinst. + * autogen.sh: use "automake -ac" (thanks to Wolfgang Schweer) + + -- Vagrant Cascadian Sat, 23 Dec 2006 11:16:58 -0700 + +ltspfs (0.4.3-0ubuntu4) edgy; urgency=low + + * really add missing dependency on fuse-ultis to ltspfs binary (brown + paperbag upload) + + -- Oliver Grawert Mon, 25 Sep 2006 03:37:34 +0200 + +ltspfs (0.4.3-0ubuntu3) edgy; urgency=low + + * add missing dependency on fuse-ultis to ltspfs binary + + -- Oliver Grawert Sun, 24 Sep 2006 19:50:06 +0200 + +ltspfs (0.4.3-0ubuntu2) edgy; urgency=low + + * Fixed testing conditions in postinst. + * closes: https://launchpad.net/distros/ubuntu/+source/ltspfs/+bug/61738 + + -- Scott Balneaves Mon, 18 Sep 2006 13:01:06 -0500 + +ltspfs (0.4.3-0ubuntu1) edgy; urgency=low + + * Fixed variable check for static-devices in add_fstab_entry + * Bumped to 0.4.3 + * UVF exception granted by mdz + + -- Scott Balneaves Mon, 18 Sep 2006 13:01:06 -0500 + +ltspfs (0.4.2-0ubuntu1) edgy; urgency=low + + * Fixed bug in mounting floppies. + * Fixed race conditions for mounting in /tmp, to moving mounting of drives + to /var/run + * Fix FHS compliance by installing scripts to /usr/sbin + * Testing exist status of mounting in am_mount and am_umount removed to + allow failed floppy mounts not to exit the server. + * Added null check for DISPLAY to fix segfault. + + -- Scott Balneaves Mon, 18 Sep 2006 13:01:06 -0500 + +ltspfs (0.4.1-0ubuntu1) edgy; urgency=low + + * New maintainer: Scott Balneaves + * Merge source to single upstream tarball, instead of CVS checkouts. + * Merged Ubuntu security patches for ltspfs and ltspfsd binaries upstream + * Upgraded pathing, fixed udev rules plus problem in postinst + + -- Scott Balneaves Mon, 18 Sep 2006 13:01:06 -0500 + +ltspfs (0.2-0ubuntu4) edgy; urgency=low + + * make sure the suid bit is really set on the suid wrapper + + -- Oliver Grawert Tue, 29 Aug 2006 12:16:27 +0200 + +ltspfs (0.2-0ubuntu3) edgy; urgency=low + + * add 01_fix_ltspfs_buffer_overflow.dpatch + * fix system calls to be true fork/execv (ltspfsd) + + -- Oliver Grawert Fri, 25 Aug 2006 14:49:57 +0200 + +ltspfs (0.2-0ubuntu2) edgy; urgency=low + + * make sure the fuse module is loaded + * fixed dependencys (for ltspfsd) + + -- Oliver Grawert Wed, 23 Aug 2006 17:04:05 +0200 + +ltspfs (0.2-0ubuntu1) edgy; urgency=low + + * added lbmount source and integration scripts + * added ubuntu integration scripts (ltspfsd) + + -- Oliver Grawert Tue, 22 Aug 2006 10:41:14 +0200 + +ltspfs (0.1cvs20060518-1) dapper; urgency=low + + * fixed manpage + * added dependency on fuse-utils + * most recent cvs checkout, fixes several bugs + - Fixed timeouts, and a hack for ubuntu ltspfs auth. (sbalneav) + * UVF exception approved by mdz + + -- Oliver Grawert Thu, 18 May 2006 07:47:46 +0200 + +ltspfs (0.1cvs20060119-1) dapper; urgency=low + + * updated to latest cvs + + -- Oliver Grawert Thu, 19 Jan 2006 03:01:49 +0100 + +ltspfs (0.1cvs20051117-1) dapper; urgency=low + + * Initial release + + -- Oliver Grawert Fri, 28 Oct 2005 21:38:44 +0200 + --- ltspfs-0.6.orig/debian/ltspfs.examples +++ ltspfs-0.6/debian/ltspfs.examples @@ -0,0 +1 @@ +doc/examples/kde-desktop-icons --- ltspfs-0.6.orig/debian/ltspfsd.docs +++ ltspfs-0.6/debian/ltspfsd.docs @@ -0,0 +1 @@ +debian/NEWS.Debian --- ltspfs-0.6.orig/debian/control +++ ltspfs-0.6/debian/control @@ -0,0 +1,48 @@ +Source: ltspfs +Section: net +Priority: optional +Maintainer: LTSP Debian/Ubuntu Maintainers +Uploaders: Carlos Laviola , Oliver Grawert , Petter Reinholdtsen , Vagrant Cascadian , Scott Balneaves , Ryan Niebur +Build-Depends: debhelper (>= 7), autotools-dev, libfuse-dev, libx11-dev, pkg-config, libglib2.0-dev, lsb-release +Standards-Version: 3.8.4 +XS-DM-Upload-Allowed: yes +Vcs-Bzr: nosmart+http://bzr.debian.org/bzr/pkg-ltsp/ltspfs/ltspfs-debian-packaging/ +Vcs-Browser: http://bzr.debian.org/loggerhead/pkg-ltsp/ltspfs/ltspfs-debian-packaging/files + +Package: ltspfs +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.4), fuse-utils +Description: Fuse based remote filesystem for LTSP thin clients + LtspFS is a remote filesystem consisting of two parts: + 1) A network server daemon that runs on the LTSP terminal. + 2) A FUSE module that runs in userspace on the server, that connects with + the daemon on the client. + . + This package contains the userspace parts for the LTSP server. + +Package: ltspfsd +Architecture: all +Depends: ${misc:Depends}, python (>= 2.4), ltspfsd-core +Recommends: ldm +Conflicts: ldm (<= 2:0.1~bzr20071217-1) +Description: Fuse based remote filesystem hooks for LTSP thin clients + LtspFS is a remote filesystem consisting of two parts: + 1) A network server daemon that runs on the LTSP terminal. + 2) A FUSE module that runs in userspace on the server, that connects with + the daemon on the client. + . + This package contains hooks to automount devices in LTSP sessions, + specifically logins using LDM. + +Package: ltspfsd-core +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, python (>= 2.4), lsof +Conflicts: ltspfsd (<= 0.5.11-1) +Description: Fuse based remote filesystem daemon for LTSP thin clients + LtspFS is a remote filesystem consisting of two parts: + 1) A network server daemon that runs on the LTSP terminal. + 2) A FUSE module that runs in userspace on the server, that connects with + the daemon on the client. + . + This package contains the daemon and other binaries to be run on LTSP thin + clients.