mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(apparmor): Fix qTox cache access
AppAmor denies access to qTox cache directory: ``` type=AVC msg=audit(1548508759.153:640): apparmor="DENIED" operation="mkdir" profile="qtox" name="/home/vincas/.cache/qTox/" pid=7802 comm="qtox" requested_mask="c" denied_mask="c" fsuid=1000 ouid=1000 ``` Add rule to allow access to qTox cache directory.
This commit is contained in:
parent
9fc8933883
commit
aef4705636
|
@ -85,6 +85,7 @@ profile qtox /usr{,/local}/bin/qtox {
|
|||
owner /{,var/}run/user/[0-9]*[0-9]/qTox*.slave-socket rwl -> /{,var/}run/user/[0-9]*[0-9]/#[0-9]*[0-9], # file dialog
|
||||
owner @{HOME}/.cache/Tox/ w,
|
||||
owner @{HOME}/.cache/Tox/qTox/{,**} rw,
|
||||
owner @{HOME}/.cache/qTox/{,**} rw,
|
||||
owner @{HOME}/.cache/thumbnails/** rw, # receiving image file produces thumbnail?
|
||||
owner @{HOME}/.config/menus/ r, # file dialog
|
||||
owner @{HOME}/.config/menus/applications-merged/ r, # file dialog
|
||||
|
|
|
@ -91,6 +91,7 @@ profile qtox /usr{,/local}/bin/qtox {
|
|||
owner /{,var/}run/user/@{uid}/qTox*.slave-socket rwl -> /{,var/}run/user/@{uid}/#[0-9]*[0-9], # file dialog
|
||||
owner @{HOME}/.cache/Tox/ w,
|
||||
owner @{HOME}/.cache/Tox/qTox/{,**} rw,
|
||||
owner @{HOME}/.cache/qTox/{,**} rw,
|
||||
owner @{HOME}/.cache/thumbnails/** rw, # receiving image file produces thumbnail?
|
||||
owner @{HOME}/.config/menus/ r, # file dialog
|
||||
owner @{HOME}/.config/menus/applications-merged/ r, # file dialog
|
||||
|
|
Loading…
Reference in New Issue
Block a user