View Single Post
Old 04-03-2020, 05:42 PM   #2
ratinox
Guru
ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.ratinox ought to be getting tired of karma fortunes by now.
 
Posts: 820
Karma: 11053908
Join Date: Oct 2016
Location: Somewhere in Time
Device: Forma, iPad Mini
What you want is a default ACL on the top-level directory. Assuming you have a group called "calibre" and a directory called "Calibre Library" you need to set the default ACL to permit access:

Code:
setfacl -d -m group:calibre:rwx "Calibre Library"
This only works for new files/directories created under Calibre Library so you also need to set everything in it once:

Code:
setfacl -R -m group:calibre:rwx "Calibre Library"
ratinox is offline   Reply With Quote