Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(apparmor): Fix typo in file path
Browse files Browse the repository at this point in the history
File rule to allow loading the executable itself has typo - no
executable name itself is present. Profile still works OK but it might
fail on some older kernels.

Fix file rule by specifying full path to the executable.
  • Loading branch information
Talkless committed Mar 25, 2019
1 parent 3c7b007 commit 4d9cc72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion security/apparmor/2.12.1/usr.bin.qtox
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ profile qtox /usr{,/local}/bin/qtox {

# Main executable

@{qtox_prefix}/bin mr,
@{qtox_prefix}/bin/qtox mr,

# Other executables

Expand Down
2 changes: 1 addition & 1 deletion security/apparmor/2.13.2/usr.bin.qtox
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ profile qtox /usr{,/local}/bin/qtox {

# Main executable

@{qtox_prefix}/bin mr,
@{qtox_prefix}/bin/qtox mr,

# Other executables

Expand Down

0 comments on commit 4d9cc72

Please sign in to comment.