From owner-freebsd-questions@FreeBSD.ORG Fri Oct 15 19:11:53 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D1B516A4CE for ; Fri, 15 Oct 2004 19:11:53 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1CC443D5A for ; Fri, 15 Oct 2004 19:11:52 +0000 (GMT) (envelope-from freebsd-questions-local@be-well.ilk.org) Received: (qmail 25922 invoked from network); 15 Oct 2004 19:11:52 -0000 Received: from dsl092-078-145.bos1.dsl.speakeasy.net (HELO be-well.no-ip.com) ([66.92.78.145]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 15 Oct 2004 19:11:52 -0000 Received: by be-well.no-ip.com (Postfix, from userid 1147) id 52B4DE; Fri, 15 Oct 2004 15:11:52 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Alfred Perlstein References: <200410072252.i97Mqifa084091@wattres.Watt.COM> <20041008084627.GA48159@happy-idiot-talk.infracaninophile.co.uk> <44vfdds39q.fsf@be-well.ilk.org> <20041014165827.GI29177@elvis.mu.org> From: Lowell Gilbert Date: 15 Oct 2004 15:11:52 -0400 In-Reply-To: <20041014165827.GI29177@elvis.mu.org> Message-ID: <443c0fzthj.fsf@be-well.ilk.org> Lines: 38 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-questions@freebsd.org Subject: Re: automount vs Solaris X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Oct 2004 19:11:53 -0000 Alfred Perlstein writes: > * Lowell Gilbert [041014 08:55] wrote: > > Matthew Seaman writes: > > > > > On the other hand, there is this: > > > > > > http://lists.freebsd.org/pipermail/freebsd-current/2004-September/036786.html > > > > > > http://www.freebsd.org/cgi/getmsg.cgi?fetch=1001154+0+/usr/local/www/db/text/2004/cvs-all/20040905.cvs-all > > > > > > so there will be autofs support in 5.3-RELEASE. > > > > That's on 6.x, not 5.x; is there any reason to think it will get > > MFC'd? [At all; I'd be surprised if release engineering okayed > > it for 5.3.] > > I'll probably immediately MFC it after the release. > > Since it works on 4.x I might even bring it back there. > > The main issue is that no one has stepped forward to write > the glue between my autofs and amd(8). I'm too busy right now. > > You can have fun with /usr/share/examples/autofs/autodriver > if you want to expiriment or try your own. I've got a deadline coming up, so I may have time to play with it after that. In the meantime, I came up with the following bit of awk to translate the table syntax, for my fairly simple case: match($2,"/[^/]*$") { print substr($2, RSTART+1, RLENGTH) " \trhost:=" $1 ";rsf:=" substr($2, 1, RSTART-1) ; print "" }