Here are the patches I currently have in my queue for review before I commit them. I hope to commit them early next week if possible and I'm hoping to release 5.1.6 soon after. --- Andreas P (3): autofs-5.1.5 - fix typing errors autofs-5.1.5 - Update README autofs-5.1.5 - fix additional typing errors Ian Kent (28): autofs-5.1.5 - make expire remaining log level debug autofs-5.1.5 - allow period following macro in selector value autofs-5.1.5 - fix macro expansion in selector values autofs-5.1.5 - Explain /etc/auto.master.d usage autofs-5.0.5 - plus map includes are only allowed in file sources autofs-5.1.5 - update autofs(8) offset map entry update description autofs-5.1.5 - also use strictexpire for offsets autofs-5.1.5 - remove unused function has_fstab_option() autofs-5.1.5 - remove unused function reverse_mnt_list() autofs-5.1.5 - remove a couple of old debug messages autofs-5.1.5 - fix amd entry memory leak autofs-5.1.5 - fix unlink_mount_tree() not umounting mounts autofs-5.1.5 - use ignore option for offset mounts as well autofs-5.1.5 - add config option for "ignore" mount option autofs-5.1.5 - use bit flags for autofs mount types in mnt_list autofs-5.1.5 - use mp instead of path in mnt_list entries autofs-5.1.5 - always use PROC_MOUNTS to make mount lists autofs-5.1.5 - add glibc getmntent_r() autofs-5.1.5 - use local getmntent_r in table_is_mounted() autofs-5.1.5 - refactor unlink_active_mounts() in direct_c autofs-5.1.5 - don't use tree_is_mounted() for mounted checks autofs-5.1.5 - use single unlink_umount_tree() for both direct and indirect mounts autofs-5.1.5 - move unlink_mount_tree() to lib/mounts.c autofs-5.1.5 - use local_getmntent_r() for unlink_mount_tree() autofs-5.1.5 - use local getmntent_r() in get_mnt_list() autofs-5.1.5 - use local getmntent_r() in tree_make_mnt_list() autofs-5.1.5 - fix missing initialization of autofs_point flags autofs-5.1.5 - build without hesiod support Joel Ebel (1): autofs-5.1.5 - Increase group buffer size geometrically CHANGELOG | 31 +++ INSTALL | 2 Makefile.conf.in | 2 README | 38 +-- README.amd-maps | 4 README.replicated-server | 2 autofs.spec | 5 daemon/automount.c | 6 - daemon/direct.c | 200 ++++++----------- daemon/indirect.c | 94 ++------ daemon/lookup.c | 9 - daemon/spawn.c | 2 daemon/state.c | 21 -- include/automount.h | 4 include/defaults.h | 2 include/mounts.h | 20 +- lib/defaults.c | 17 + lib/master.c | 7 - lib/mounts.c | 480 +++++++++++++++++++--------------------- man/auto.master.5.in | 33 ++- man/autofs.5 | 21 +- man/autofs.8.in | 5 man/autofs.conf.5.in | 36 ++- man/autofs_ldap_auth.conf.5.in | 2 man/automount.8 | 2 modules/amd_tok.l | 2 modules/lookup_ldap.c | 4 modules/parse_amd.c | 290 ++++++++++++++++-------- modules/replicated.c | 4 redhat/autofs.conf.default.in | 65 +++-- redhat/autofs.sysconfig | 2 samples/auto.master | 6 - samples/autofs.conf.default.in | 39 ++- samples/autofs.init.conf | 2 34 files changed, 756 insertions(+), 703 deletions(-) -- Ian