Codebase list libvirt / 8d79673
apparmor: Fix forgotten comma at EOL Guido Günther 5 years ago
2 changed file(s) with 26 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 From: Michal Privoznik <mprivozn@redhat.com>
1 Date: Wed, 4 Jul 2018 07:49:35 +0200
2 Subject: apparmor: Fix forgotten comma at EOL
3
4 The commit of 1fff379ff6e778 forgot comma at the end of the line
5 rendering the file invalid in syntax.
6
7 Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
8 ---
9 examples/apparmor/usr.lib.libvirt.virt-aa-helper | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/examples/apparmor/usr.lib.libvirt.virt-aa-helper b/examples/apparmor/usr.lib.libvirt.virt-aa-helper
13 index 8aa9dd2..665094a 100644
14 --- a/examples/apparmor/usr.lib.libvirt.virt-aa-helper
15 +++ b/examples/apparmor/usr.lib.libvirt.virt-aa-helper
16 @@ -51,7 +51,7 @@ profile virt-aa-helper /usr/{lib,lib64}/libvirt/virt-aa-helper {
17 @{HOME}/** r,
18 /var/lib/libvirt/images/ r,
19 /var/lib/libvirt/images/** r,
20 - /var/lib/nova/instances/_base/* r
21 + /var/lib/nova/instances/_base/* r,
22 /{media,mnt,opt,srv}/** r,
23 # For virt-sandbox
24 /{,var/}run/libvirt/**/[sv]d[a-z] r,
1414 Pass-GPG_TTY-env-var-to-the-ssh-binary.patch
1515 apparmor-Allow-virt-aa-helper-to-access-the-name-service-.patch
1616 debian/Prefer-sbin-over-usr-sbin.patch
17 apparmor-Fix-forgotten-comma-at-EOL.patch