Skip to content
Snippets Groups Projects
Commit 0eb6bff5 authored by Dario Freni's avatar Dario Freni Committed by Gerrit Code Review
Browse files

Merge "Allow apexd to also create dirs/files in its storage."

parents 20756085 179ada91
No related branches found
No related tags found
No related merge requests found
...@@ -6,9 +6,9 @@ init_daemon_domain(apexd) ...@@ -6,9 +6,9 @@ init_daemon_domain(apexd)
allow apexd apex_key_file:dir { search getattr }; allow apexd apex_key_file:dir { search getattr };
allow apexd apex_key_file:file r_file_perms; allow apexd apex_key_file:file r_file_perms;
# Allow reading and writing of APEX files in the APEX data dir # Allow creating, reading and writing of APEX files/dirs in the APEX data dir
allow apexd apex_data_file:dir rw_dir_perms; allow apexd apex_data_file:dir create_dir_perms;
allow apexd apex_data_file:file rw_file_perms; allow apexd apex_data_file:file create_file_perms;
# allow apexd to create loop devices with /dev/loop-control # allow apexd to create loop devices with /dev/loop-control
allow apexd loop_control_device:chr_file rw_file_perms; allow apexd loop_control_device:chr_file rw_file_perms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment