mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fix(apparmor): fix file dialog on KDE desktop
Opening file dialog produces error: ``` type=AVC msg=audit(1549805942.022:1474): apparmor="DENIED" operation="exec" profile="qtox" name="/usr/lib/x86_64-linux-gnu/libexec/kf5/kioslave" pid=2784 comm="qtox" requested_mask="x" denied_mask="x" fsuid=1000 ouid=0 ``` Add rule to allow launching kioslave helper.
This commit is contained in:
parent
e1ba972d8b
commit
dffe00b4e3
|
@ -28,6 +28,8 @@ profile qtox /usr{,/local}/bin/qtox {
|
||||||
|
|
||||||
#TODO: use xdg-open abstraction when it's available
|
#TODO: use xdg-open abstraction when it's available
|
||||||
/usr/bin/xdg-open PUx,
|
/usr/bin/xdg-open PUx,
|
||||||
|
#TODO: use named profile or abstraction when it's available
|
||||||
|
/usr/lib/@{multiarch}/libexec/kf5/kioslave PUx,
|
||||||
|
|
||||||
# Additional libraries
|
# Additional libraries
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,8 @@ profile qtox /usr{,/local}/bin/qtox {
|
||||||
|
|
||||||
#TODO: use xdg-open abstraction when it's available
|
#TODO: use xdg-open abstraction when it's available
|
||||||
/usr/bin/xdg-open PUx,
|
/usr/bin/xdg-open PUx,
|
||||||
|
#TODO: use named profile or abstraction when it's available
|
||||||
|
/usr/lib/@{multiarch}/libexec/kf5/kioslave PUx,
|
||||||
|
|
||||||
# Additional libraries
|
# Additional libraries
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user