1

Is it possible to set the permission for all users or all groups that are present in the acl?

Namely, I would like a command that applies permissions uniformly for all members of an entity type, including the owning entities:

Ie:

setfacl g:*:perms
setfacl u:*:perms

Where the above modifies the perms of the owning entities as well (ie calls chmod)

MetaChrome
  • 133
  • 10

1 Answers1

1

chmod a+$perms is enough there, setting an acl for everyone really makes no sense...

Dennis Kaarsemaker
  • 19,277
  • 2
  • 44
  • 70
  • Isn't here a difference?: `a` is for **all**, while the ACLs are *not everybody*, but every user *listed*. – U. Windl Jan 24 '23 at 10:04