Is there a way in linux to make "acl" part of the default mount options, so that it does not need to be specified individually for each filesystem in fstab?
|
feedback
|
|
If you just want to clean up | |||
feedback
|
|
I don't believe there's any facility in | |||
feedback
|
|
Because if you have 50 systems updating /etc/fstab manually becomes tedious and automatically updating /etc/fstab is not something I'm looking forward to doing. If there was a central file e.g. /etc/default/fs containing the defaults this would be a lot easier/safer to update. Guess I will need to make a script that finds the ext3 filesystems and enables acls via tune2fs. While you would expect any recent Linux distribution to enable acls by default, this is definitely NOT the case for Ubuntu 10.04 (LTS), not even for the server version (just verified that on one of my test systems) Nico | |||
|
feedback
|
static const struct opt_map opt_map[] = { { "defaults", 0, 0, 0 }, /* default options */but I can't see where it chooses the default. I'm interested to know the answer to this one, upvoting. – James Lawrie Aug 7 '10 at 19:57aclis only defined for a few of the filesystems that Linux supports (e.g.ext2andreiserfsbut notprocorvfat). – Gilles Aug 8 '10 at 11:23