We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the documentation for the shared cache folder, we propose at the moment to execute the following steps to share the folder with several persons:
The problem is that the setfacl command might not result in persistent settings, compare https://unix.stackexchange.com/q/372244.
setfacl
One approach might be to write a /etc/systemd/system/audb.service script that applies the settings after reboot:
/etc/systemd/system/audb.service
# https://unix.stackexchange.com/a/372510 [Unit] Description=audb shared cache rights Requires=local-fs.target After=local-fs.target [Service] ExecStart=/usr/bin/setfacl -R -d -m u::rwx,o::rx- /data/audb [Install] WantedBy=multi-user.target
And enable it with:
$ sudo systemctl enable audb.service
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the documentation for the shared cache folder, we propose at the moment to execute the following steps to share the folder with several persons:
The problem is that the
setfacl
command might not result in persistent settings, compare https://unix.stackexchange.com/q/372244.One approach might be to write a
/etc/systemd/system/audb.service
script that applies the settings after reboot:And enable it with:
$ sudo systemctl enable audb.service
The text was updated successfully, but these errors were encountered: