Ian Kent wrote:
> On Mon, 2008-01-28 at 11:11 +0100, Francesco P. Lovergine wrote:
>> I was looking for some sort of automounting for per-user subtrees.
>> Essentially I need to bind-mount on demand some per user (users are 
>> sql-based)
>> subdir like /path/<user>/mount_point, where /path/<user> is a true dir. 
>> I'm missing something or it cannot be performed using autofs without
>> adding each entry explicitly for every users ?

Have you looked at using an executable map? Something like in the master map:
/topdir   program:/etc/auto_per_user

/etc/auto_per_user:
#!/bin/sh
# $1 is <user>
echo ":/path/$1/mount_point"

> 
> Try something like.
> 
> In the master map:
> /topdir               /etc/auto.users
> 
> In auto.users:
> *     :/path/&
> 
> Clearly, the automount entries for future mounts aren't known until they
> are triggered, so they can't be seen no matter what options you use.
> 
> Ian
> 
> 
> _______________________________________________
> autofs mailing list
> [email protected]
> http://linux.kernel.org/mailman/listinfo/autofs
> 
> 

-- 

  Douglas E. Engert  <[EMAIL PROTECTED]>
  Argonne National Laboratory
  9700 South Cass Avenue
  Argonne, Illinois  60439
  (630) 252-5444

_______________________________________________
autofs mailing list
[email protected]
http://linux.kernel.org/mailman/listinfo/autofs

Reply via email to