From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Kent Subject: [PATCH 00/25] Current autofs patch queue Date: Mon, 19 Aug 2013 09:11:52 +0800 Message-ID: <20130819010909.6472.32512.stgit@perseus.fritz.box> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=themaw.net; h= subject:to:from:cc:date:message-id:mime-version:content-type :content-transfer-encoding; s=mesmtp; bh=s7ZWZWMwyqGcaHbDubaiARk KB7M=; b=riy42BeykZbAHOxy94g1tCD0Htv5TTZPIMtRyVx26Xi2Iqzf0b0xoZ/ XXCFIsJonAzveI3u7A/4DvXkxjxnFIlCLcDLL+fdBlAT9aOb40xTkRbMngRpQCIi Y7F30bXjHBP2d3XgNGquDdZXxI2gqQn0RylPnp9jugBgEcq40fy0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=subject:to:from:cc:date:message-id :mime-version:content-type:content-transfer-encoding; s=smtpout; bh=s7ZWZWMwyqGcaHbDubaiARkKB7M=; b=YsGtT9yrlqKXxss5MN4aLh1B1eOT Rsc5rfdZs6/ihKsxXg2H7gEsCtv9OCVXR2X4H2LUlt/lm8fl2sBJ378+Fz9ZENGI fmbBjqPYWYEqeIrDlsfH3c1TI6BTRtddso//lQiR7pj0wdkFMy653vq5nd+kGe4Y KeuZPBGrPaA4eBk= Sender: autofs-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" To: autofs mailing list Cc: Gordon Lack , "Lan Yixun (dlan)" , Leonardo Chiquitto , Dustin Polke There are patches from several contributors I plan on committing so I thought posting them to the list for final review would be sensible. I'm not sure when I'll commit the changes but I hope in the next couple of days. --- Dustin Polke (1): autofs-5.0.7 - fix compilation of lookup_ldap.c without sasl Ian Kent (13): autofs-5.0.7 - don't override LDFLAGS in make rules autofs-5.0.7 - fix a couple of compiler warnings autofs-5.0.7 - add after sssd dependency to unit file autofs-5.0.7 - dont start readmap unless ready autofs-5.0.7 - fix dumpmaps multi output autofs-5.0.7 - try and cleanup after dumpmaps autofs-5.0.7 - teach dumpmaps to output simple key value pairs autofs-5.0.7 - fix syncronize handle_mounts() shutdown autofs-5.0.7 - fix fix wildcard multi map regression autofs-5.0.7 - improve timeout option description autofs-5.0.7 - only probe specific nfs version when requested autofs-5.0.7 - fix bad mkdir permission on create autofs-5.0.7 - setup program map env from macro table Lan Yixun (dlan) (10): autofs-5.0.7 - fix compile error with heimdal support enabled autofs-5.0.7 - fix typo forced-shutdown should be force-shutdown autofs-5.0.7 - fix hesiod check error and use correct $(LIBS) setting autofs-5.0.7 - fix dead LDAP symbolic link when LDAP support is disabled autofs-5.0.7 - add missing libtirpc lib to mount_nfs.so when TIRPC enabled autofs-5.0.7 - use compiler determined by configure instead of hard-coded ones autofs-5.0.7 - remove hard-coded STRIP variable autofs-5.0.7 - use LIBS for link libraries autofs-5.0.7 - unbundle NOTSTRIP from DEBUG so they dont depend on each other autofs-5.0.7 - fix occasional build error when enable parallel compiling Leonardo Chiquitto (1): autofs-5.0.7 - fix crash due to thread unsafe use of libldap CHANGELOG | 23 ++++ Makefile.conf.in | 3 Makefile.rules | 34 +++-- aclocal.m4 | 19 ++- autofs.spec | 3 configure | 104 +++++++++++++++-- configure.in | 2 daemon/Makefile | 2 daemon/automount.c | 71 +++++++++-- daemon/state.c | 15 +- include/config.h.in | 3 include/lookup_ldap.h | 4 - include/macros.h | 1 include/master.h | 1 lib/Makefile | 6 + lib/macros.c | 28 ++++ lib/master.c | 250 ++++++++++++++++++++++++++++++++++++++-- man/auto.master.5.in | 5 + man/automount.8 | 23 +++- modules/Makefile | 20 ++- modules/cyrus-sasl.c | 39 +++++- modules/lookup_file.c | 25 +++- modules/lookup_ldap.c | 76 +++++++++++- modules/lookup_nisplus.c | 26 +++- modules/lookup_program.c | 20 +++ modules/lookup_sss.c | 22 +++- modules/lookup_yp.c | 23 +++- modules/mount_bind.c | 2 modules/mount_nfs.c | 14 ++ redhat/autofs.sysconfig.in | 5 + samples/autofs.conf.default.in | 5 + samples/autofs.service.in | 2 32 files changed, 753 insertions(+), 123 deletions(-) -- Ian