debian/0000755000000000000000000000000012263465520007173 5ustar debian/dirs0000644000000000000000000000003112263271071010045 0ustar usr/sbin usr/lib/autodir debian/docs0000644000000000000000000000001411374217577010052 0ustar NEWS README debian/control0000644000000000000000000000170212263270303010567 0ustar Source: autodir Section: utils Priority: optional Maintainer: Francesco Paolo Lovergine Build-Depends: debhelper (>= 9), autotools-dev, libltdl-dev, libcap-dev Standards-Version: 3.9.5 Homepage: http://www.intraperson.com/autodir/ Package: autodir Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, kmod Description: Automatically creates home and group directories for LDAP/NIS/SQL/local accounts A modular and thread-enabled tool to create and/or mounting and managing automagically and transparently user/group home directories, on demand. . It can work with any authentication framework (e.g. system files, NIS, LDAP or SQL) and does not require PAM, which is a required feature for session-less service such as smtp servers. . Automounter version 4 (autofs4) has to be enabled when compiling the kernel. Debian packaged kernels have it enabled as module. debian/rules0000755000000000000000000000326312263465144010261 0ustar #!/usr/bin/make -f # 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) CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif config.status: configure dh_testdir dh_autotools-dev_updateconfig # Add here commands to configure the package. CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info build-indep: build build-arch: build build: build-stamp build-stamp: config.status dh_testdir $(MAKE) touch $@ clean: dh_testdir dh_testroot [ ! -f Makefile ] || $(MAKE) distclean dh_autotools-dev_restoreconfig dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs $(MAKE) install DESTDIR=$(CURDIR)/debian/autodir ( cd $(CURDIR)/debian/autodir/usr/lib/autodir && rm -rf *.a *.la ) # Build architecture-independent files here. binary-indep: build-indep install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build-arch install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installman debian/autodir.8 dh_installdocs dh_installinit dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install build-indep build-arch debian/watch0000644000000000000000000000026110612617354010223 0ustar # Compulsory line, this is a version 3 file version=3 # Uncomment to find new files on sourceforge, for debscripts >= 2.9 http://sf.net/intraperson/autodir-([\d\.]+)\.tar\.gz debian/autodir.init0000644000000000000000000001117612263273553011540 0ustar #!/bin/bash # ### BEGIN INIT INFO # Provides: autodir # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Should-Start: autofs # Should-Stop: autofs # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start autodir daemons at boot start # Description: Automatically manages home/group directories for LDAP/NIS/SQL/local accounts ### END INIT INFO # # autodir - Init script used to run autodir on Debian # This is written starting from the script provided by # autodir upstream for general use. # # Copyright (C) 2005-2009 Francesco P. Lovergine # # 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 should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # On Debian the license is available in /usr/share/common-license/GPL # PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/autodir NAME=autodir DESC=Autodir [ -x $DAEMON ] || exit 0 RUN_AUTOHOME="no" RUN_AUTOGROUP="no" # Include autodir defaults if available [ -r /etc/default/autodir ] && . /etc/default/autodir AUTOHOME_PID=/run/autohome.pid AUTOGROUP_PID=/run/autogroup.pid AUTOHOME_LOCKDIR=/run/lock/autodir AUTOHOME_LOCK=$AUTOHOME_LOCKDIR/autohome AUTOGROUP_LOCK=$AUTOHOME_LOCKDIR/autogroup log_daemon_msg() { echo -n "$1: $2" } log_end_msg() { if [ $1 -ne 0 ]; then echo " failed!" else echo "." fi } # Make sure the autofs filesystem type is available. load_autofs() { ( grep -q autofs /proc/filesystems || /sbin/modprobe -s autofs4 ) 2>/dev/null } run_autohome() { RETVAL=0 if [ "$RUN_AUTOHOME" = "yes" ]; then load_autofs mkdir $AUTOHOME_LOCKDIR 2>/dev/null || true start-stop-daemon --start --quiet --pidfile $AUTOHOME_PID --exec $DAEMON -- \ -d $AUTOHOME_HOME -m $AUTOHOME_MODULE \ ${AUTOHOME_OPTIONS+ -o $AUTOHOME_OPTIONS} \ ${AUTOHOME_TIMEOUT+ -t $AUTOHOME_TIMEOUT} \ ${AUTOHOME_BACKUP+ -b $AUTOHOME_BACKUP} \ ${AUTOHOME_BACKWAIT+ -w $AUTOHOME_BACKWAIT} \ ${AUTOHOME_BACKPRI+ -p $AUTOHOME_BACKPRI} \ ${AUTOHOME_MAXBACK+ -c $AUTOHOME_MAXBACK} \ -l $AUTOHOME_PID 2>/dev/null RETVAL=$? [ $RETVAL -eq 0 ] && touch $AUTOHOME_LOCK fi return $RETVAL } kill_autohome() { RETVAL=0 if [ -r $AUTOHOME_PID ]; then start-stop-daemon --stop --quiet --pidfile $AUTOHOME_PID --exec $DAEMON RETVAL=$? [ $RETVAL -eq 0 ] && rm -f $AUTOHOME_LOCK fi return $RETVAL } run_autogroup() { RETVAL=0 if [ "$RUN_AUTOGROUP" = "yes" ]; then load_autofs mkdir $AUTOHOME_LOCKDIR 2>/dev/null || true start-stop-daemon --start --quiet --pidfile $AUTOGROUP_PID --exec $DAEMON -- \ -d $AUTOGROUP_HOME -m $AUTOGROUP_MODULE \ ${AUTOGROUP_OPTIONS+ -o $AUTOGROUP_OPTIONS} \ ${AUTOGROUP_TIMEOUT+ -t $AUTOGROUP_TIMEOUT} \ ${AUTOGROUP_BACKUP+ -b $AUTOGROUP_BACKUP} \ ${AUTOGROUP_BACKWAIT+ -w $AUTOGROUP_BACKWAIT} \ ${AUTOGROUP_BACKPRI+ -p $AUTOGROUP_BACKPRI} \ ${AUTOGROUP_MAXBACK+ -c $AUTOGROUP_MAXBACK} \ -l $AUTOGROUP_PID 2>/dev/null RETVAL=$? [ $RETVAL -eq 0 ] && touch $AUTOGROUP_LOCK fi return $RETVAL } kill_autogroup() { RETVAL=0 if [ -r $AUTOGROUP_PID ]; then start-stop-daemon --stop --quiet --pidfile $AUTOGROUP_PID --exec $DAEMON RETVAL=$? [ $RETVAL -eq 0 ] && rm -f $AUTOGROUP_LOCK fi return $RETVAL } [ -r /lib/lsb/init-functions ] && . /lib/lsb/init-functions [ -d /var/lock/autodir ] || mkdir /var/lock/autodir set -e case "$1" in start) log_daemon_msg "Starting $DESC" "$NAME" run_autohome && run_autogroup log_end_msg $? ;; stop) log_daemon_msg "Stopping $DESC" "$NAME" kill_autohome && kill_autogroup log_end_msg $? ;; restart|force-reload) log_daemon_msg "Restarting $DESC" "$NAME" kill_autohome && kill_autogroup sleep 1 run_autohome && run_autogroup log_end_msg $? ;; *) N=/etc/init.d/$NAME echo "Usage: $N {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0 debian/changelog0000644000000000000000000001270712263464761011062 0ustar autodir (0.99.9-10) unstable; urgency=medium * Added contributed manpage. (closes: #604863) -- Francesco Paolo Lovergine Thu, 09 Jan 2014 10:20:18 +0100 autodir (0.99.9-9) unstable; urgency=medium * Moved to kmod dependency instead of module-init-tools. (closes: #733703) * Policy bumped to 3.9.5 and dhelper compat set to 9. * Fixed for build-* targets in debian/rules. * Dropped /var/lock/autodir distribution and changed init file to create the modern /run/lock/autodir on fly. Also changed the pidfiles locations. (closes: #689880) * The autodir script should start after autofs daemon, changed init script header as consequence. -- Francesco Paolo Lovergine Wed, 08 Jan 2014 16:35:35 +0100 autodir (0.99.9-8) unstable; urgency=low * New patch setpriority: fixes a missing set of header files. (closes: #701449) -- Francesco Paolo Lovergine Sat, 23 Feb 2013 15:06:34 +0100 autodir (0.99.9-7.1) unstable; urgency=low * Non-maintainer upload. * Fix "FTBFS: dpkg-buildpackage: error: dpkg-source -b autodir-0.99.9 gave error exit status 2": drop automagically created patch and use autotools-dev helpers in debian/rules to handle config.{guess,sub}. (Closes: #643050) -- gregor herrmann Wed, 18 Jan 2012 19:03:07 +0100 autodir (0.99.9-7) unstable; urgency=low * Now use source format 3.0 and quilt. * New patch: getsubopt, removed explicit prototype for getsubopt(). (closes: #624904) * Policy bumped to 3.9.2, and debhelper level set to 8. -- Francesco Paolo Lovergine Mon, 02 May 2011 18:01:36 +0200 autodir (0.99.9-6) unstable; urgency=low * Moved to main. * Copyright set to GPL2+, as stated in the code. * Removed HOWTO documents provided in the debian/ area and released as CC-A v2. * README.Debian now points the howto on the autodir site. -- Francesco Paolo Lovergine Mon, 17 May 2010 12:45:11 +0200 autodir (0.99.9-5) unstable; urgency=low * Removed obsolete -k/--autoclean option in init script. Now logging to syslog. * Changed minimal module-init-tools version to 3.10 for safety. (closes: #577743) * Policy bumped to 3.8.4. No changes. -- Francesco Paolo Lovergine Wed, 14 Apr 2010 10:08:50 +0200 autodir (0.99.9-4) unstable; urgency=low * Added a suitable LSF init section to debian/autodir.init. * Fixed debian/copyright for copyright holder. * Fixed cleaning rule. * Removed empty prerm/preinst. * Now the autodir init file creates /var/lock/autodir at every run. -- Francesco Paolo Lovergine Tue, 02 Jun 2009 19:52:21 +0200 autodir (0.99.9-3) unstable; urgency=low * Updated to use build-dep libltdl-dev. (closes: #531526) * Updated to dehelper 7 * Added homepage field to debian/control. * Now usin dh_prep instead of dh_clean -k. * Policy bumped to 3.8.1. -- Francesco Paolo Lovergine Tue, 02 Jun 2009 19:29:54 +0200 autodir (0.99.9-2) unstable; urgency=low * New upload to force a rebuild. (closes: #494271) -- Francesco Paolo Lovergine Thu, 04 Sep 2008 09:42:42 +0200 autodir (0.99.9-1) unstable; urgency=low * New upstream release. (closes: #407099) * Watch file revised. * Still using internal auto_fs4.h version instead of distributed one. -- Francesco Paolo Lovergine Sun, 22 Apr 2007 10:40:21 +0200 autodir (0.99.8-2) unstable; urgency=low * Ian Kent's patch for current autofs_4.h merged instead of using the old auto_fs4.h locally -- Francesco Paolo Lovergine Tue, 12 Dec 2006 09:51:16 +0100 autodir (0.99.8-1) unstable; urgency=high * New upstream version * Using a locally provided old auto_fs4.h header file in order to not trash the program in respect with current pre-5 autofs4 interface. (closes: #399454) -- Francesco Paolo Lovergine Sat, 9 Dec 2006 17:21:55 +0100 autodir (0.99.7-1) unstable; urgency=medium * New upstream version. Still missing #include added by patching the sources... -- Francesco Paolo Lovergine Tue, 7 Nov 2006 23:38:14 +0100 autodir (0.99.3-3) unstable; urgency=high * Patched to #include before linux/auto_fs4.h Thanks Roland Stigge. (closes: #392117) -- Francesco Paolo Lovergine Thu, 12 Oct 2006 20:48:06 +0200 autodir (0.99.3-2) unstable; urgency=low * Changed rules to avoid amd64 breakage. (closes: #364126) -- Francesco Paolo Lovergine Fri, 5 May 2006 14:51:54 +0200 autodir (0.99.3-1) unstable; urgency=low * New upstream release -- Francesco Paolo Lovergine Mon, 20 Feb 2006 16:20:40 +0100 autodir (0.99.0-2) unstable; urgency=low * Restated better description, and added a note about the need of autofs4 in the description file and README.Debian. * Set level=2 not 3 in debian/autodir.default. -- Francesco Paolo Lovergine Thu, 19 Jan 2006 18:41:49 +0100 autodir (0.99.0-1) unstable; urgency=low * Initial release (closes: #348508) * Note that I had to rebuild from scratch all autotools stuff using current versions. This was due to a libtool issue in the upstream tarball. Hopefully the whole thing will go upstream in a few. -- Francesco Paolo Lovergine Tue, 17 Jan 2006 15:20:06 +0100 debian/postinst0000644000000000000000000000171010376357107011004 0ustar #! /bin/sh # postinst script for autodir # # 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 # PACKAGE=autodir INIT=/etc/init.d/$PACKAGE case "$1" in configure) ;; 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 debian/compat0000644000000000000000000000000212263270527010372 0ustar 9 debian/autodir.default0000644000000000000000000000503411374217636012217 0ustar # Defaults for autodir initscript sourced by /etc/init.d/autodir # installed at /etc/default/autodir by the maintainer scripts # Master system-wide autodir switches. The initscript # will not run one or both if they are not set to yes. RUN_AUTOHOME="no" RUN_AUTOGROUP="no" # Where (virtual) home/group directories are supposed to be? # Visible to applications AUTOHOME_HOME=/home AUTOGROUP_HOME=/group # How long to wait in seconds # before it is assumed home directory # is inactive and unmounted. # # Servers like IMAP/POP access home directories every 10min # in most configurations -- client side default mail check duraion. # Therefore it is beter to make it 11min in this situation. # # If your site has different requirements, change according to that. AUTOHOME_TIMEOUT=660 # How long to wait in seconds # before it is assumed home directory # is inactive and unmounted. AUTOGROUP_TIMEOUT=300 # Authome module paths AUTOHOME_MODULE="/usr/lib/autodir/autohome.so" AUTOGROUP_MODULE="/usr/lib/autodir/autogroup.so" # realpath => path where real home directories should reside # level => Default value is ok for almost all sites. See Autodir-HOWTO. # skel => Location of skel files. absolute path is expected # noskel => Don not copy skel files to home directories AUTOHOME_OPTIONS="realpath=/autohome,level=2,skel=/etc/skel" # realpath => path where real group directories should reside. # level => Default value is ok for almost all sites. See Autodir-HOWTO. # nosetgid => Default is to setgid the group directory created. # nopriv => Default is to create group directory for every kind of group. # If your site has user private groups and you dont want # group directories created for these, use this option. AUTOGROUP_OPTIONS="realpath=/autogroup,level=2" # If you desire backup feature and you know what this feature is, then uncomment it! # Full path to program as well as arguments. # %x characters are replaced with appropriate values. # Following is just example. Do not use it as is! # See Autodir-HOWTO for further info. #AUTOHOME_BACKUP="'/bin/tar cf /tmp/%N.tar.gz %L'" #AUTOGROUP_BACKUP="'/bin/tar cf /tmp/%N.tar.gz %L'" # How long to wait after a home directory is unmounted # to start backup. Value expected in seconds and can not exceed one day. #AUTOHOME_BACKWAIT=600 #AUTOGROUP_BACKWAIT=600 # Backup priority. 1 to 40 inclusive. Smaller value means higher priority. #AUTOHOME_BACKPRI=30 #AUTOGROUP_BACKPRI=30 # Max backup program execusions not to exceed at any given time. #AUTOHOME_MAXBACK=150 #AUTOGROUP_MAXBACK=150 debian/README.Debian0000644000000000000000000000256212263270625011241 0ustar autodir for Debian ------------------ Autodir requires a phisical path on a disk volume to be used for creating users directory. That is typically /autohome or something else, where it will create a complete gerarchy of directories for all users. Autofs is then used to mount on a virtual path (e.g. /home) each user or group home. Both them are a choice of the administrator, so autodir comes unconfigured just after installation. Please, configure /etc/default/autodir in order to use the program, you will tipically have to move in advance current contents of e.g. /home/someone directory under /autohome/s/so/someone for every user 'someone', but that's definitively your choice. The init script used in this package is Debian specific, so please do not bother autodir author with report about possible bugs. Also ensure to have your accounting system (system passwd, LDAP, SQL, NIS or what else) up and running and home paths coherent with your previous choices. The program requires also version 4 of autofs, it doesn't work with previous one! The required module is loaded automagically at startup if available, or you need to have it compiled in statically in your kernel. The Autodir HOWTO document is available under CC-A 2.0 license at http://www.intraperson.com/autodir/Autodir-HOWTO.html - Francesco Paolo Lovergine , Tue, 17 Jan 2006 15:20:06 +0100 debian/postrm0000644000000000000000000000167510376357107010457 0ustar #! /bin/sh # postrm script for autodir # # 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 PACKAGE=autodir case "$1" in purge) ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm 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 debian/source/0000755000000000000000000000000011557551362010500 5ustar debian/source/format0000644000000000000000000000001411557551353011706 0ustar 3.0 (quilt) debian/autodir.80000644000000000000000000000434612263464557010753 0ustar .TH AUTODIR 8 .SH NAME autodir \- manage home directories .SH SYNOPSIS .B autodir [\fROPTIONS\fR] .SH DESCRIPTION .B autodir is a command to organize home directories, usually for user accounts from a centralized database like LDAP, SQL, NIS, etc... It also has transparent backup features. .SH OPTIONS .TP .BR \-d " "\fIDIR\fR Specifies the virtual base directory; the mount point for the autofs filesystem. If \fIDIR\fR does not exist, it will be created. An absolute path is expected for this option. .TP .BR \-t " "\fISECONDS\fR Expiration timeout for virtual directories. If a directory is inactive for \fISECONDS\fR, it will be unmounted. .TP .BR \-m " "\fIMODULE\fR Module to be used with autodir. The full path to \fIMODULE\fR is expected. .TP .BR \-n \fR Do not kill the backup process and wait for it to finish. .TP .BR \-N \fR Do not kill the backup process, but do NOT wait for it to finish. .TP .BR \-o " "\fISUBOPTS\fR All options \fISUBOPTS\fR are passed to the module. This option passing syntax is similar to that of the mount command with its -o option. See specific module's documentation for more info. .TP .BR \-f \fR q Run in the foreground and log all messages to the console. For debugging purpose and to see how autodir works. .TP .BR \-l " "\fIFILE\fR Full path to a file in which autodir will write its process id. .TP .BR \-h \fR Display help about autodir options. .TP .BR \-v \fR Display version information. .TP .BR \-V \fR Use verbose logging. .TP .BR \-b " "\fIPROG\fR This option is to specify the program to use for backups, as well as options for it. The path to \fIPROG\fR should be absolute. .TP .BR \-w " "\fISECONDS\fR Whenever a virtual directory is not used for a period of time, it is assumed inactive and is unmounted. Then, a backup is immediately started. With this option, you can specify to wait \fISECONDS\fR before the backup starts. If this option is absent, the backup will start immediately. .TP .BR \-p " "\fINUMBER\fR Backup process priority. This value is from 1-40, with 1 being highest priority and 40 being lowest. The default value is 30. .TP .BR \-c " "\fINUMBER\fR This restricts the number of backup processes to \fINUMBER\fR at any given time. The default value is 150. # manpage written on Nov. 24, 2010 by Timmy debian/patches/0000755000000000000000000000000012112146615010614 5ustar debian/patches/getsubopt0000644000000000000000000000243011557552115012562 0ustar Index: autodir-0.99.9/src/modules/autogroup.c =================================================================== --- autodir-0.99.9.orig/src/modules/autogroup.c 2011-05-02 17:54:09.000000000 +0200 +++ autodir-0.99.9/src/modules/autogroup.c 2011-05-02 17:56:27.000000000 +0200 @@ -98,7 +98,6 @@ -int getsubopt (char **, const char* const *, char **); module_info autogroup_info = { MODULE_NAME, MODULE_PROTOCOL }; Index: autodir-0.99.9/src/modules/autohome.c =================================================================== --- autodir-0.99.9.orig/src/modules/autohome.c 2011-05-02 17:56:46.000000000 +0200 +++ autodir-0.99.9/src/modules/autohome.c 2011-05-02 17:56:51.000000000 +0200 @@ -119,7 +119,6 @@ #define READ_BUF_SIZE 8000 #define SKEL_FILE_MAX_COPY (1024*1024) /*1MB*/ -int getsubopt (char **, const char* const *, char **); /*module sub-option values*/ static struct { Index: autodir-0.99.9/src/modules/automisc.c =================================================================== --- autodir-0.99.9.orig/src/modules/automisc.c 2011-05-02 17:56:35.000000000 +0200 +++ autodir-0.99.9/src/modules/automisc.c 2011-05-02 17:56:39.000000000 +0200 @@ -95,7 +95,6 @@ -int getsubopt (char **, const char* const *, char **); /*module option values*/ static struct { debian/patches/series0000644000000000000000000000002612112146510012021 0ustar getsubopt setpriority debian/patches/setpriority0000644000000000000000000000071712112146615013141 0ustar Index: autodir-0.99.9/src/backup_fork.c =================================================================== --- autodir-0.99.9.orig/src/backup_fork.c 2006-11-24 05:08:04.000000000 +0100 +++ autodir-0.99.9/src/backup_fork.c 2013-02-23 15:08:34.851834040 +0100 @@ -25,6 +25,8 @@ #include #include #include +#include +#include #include "msg.h" #include "backup_argv.h" #include "miscfuncs.h" debian/copyright0000644000000000000000000000123411374220467011127 0ustar This package was debianized by Francesco Paolo Lovergine on Tue, 17 Jan 2006 15:20:06 +0100. It was downloaded from http://www.intraperson.com/autodir/ Author: Venkata Ramana Enaganti Copyright: Copyright(C) 2004-2007 Venkata Ramana Enaganti License: Autodir 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 GNU/Linux systems, the text of the GPL can be found in /usr/share/common-licenses/GPL-2.