~apparmor-dev/apparmor/master

« back to all changes in this revision

Viewing changes to parser/tst/simple_tests/change_profile/aa_re_ok_3.sd

  • Committer: Steve Beattie
  • Date: 2019-02-19 09:38:13 UTC
  • Revision ID: sbeattie@ubuntu.com-20190219093813-ud526ee6hwn8nljz
The AppArmor project has been converted to git and is now hosted on
gitlab.

To get the converted repository, please do
  git clone https://gitlab.com/apparmor/apparmor

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
#=DESCRIPTION audit allow change_profile with name space
3
 
#=EXRESULT PASS
4
 
#
5
 
/usr/bin/foo {
6
 
   audit allow change_profile -> :foo:/bin/foo,
7
 
}
8
 
 
9
 
/usr/bin/foo2 {
10
 
   audit allow change_profile -> :foo:/bin/fo*,
11
 
}
12
 
 
13
 
/usr/bin/foo3 {
14
 
   audit allow change_profile -> :foo:/bin/fo**,
15
 
}
16
 
 
17
 
/usr/bin/foo4 {
18
 
   audit allow change_profile -> :foo:/bin/fo?,
19
 
}
20
 
 
21
 
/usr/bin/foo5 {
22
 
   audit allow change_profile -> :foo:/bin/fo[ab],
23
 
}
24
 
 
25
 
/usr/bin/foo6 {
26
 
   audit allow change_profile -> :foo:/bin/fo[^ab],
27
 
}
28
 
 
29
 
/usr/bin/foo7 {
30
 
   audit allow change_profile -> :fo*:/bin/foo,
31
 
}
32
 
 
33
 
/usr/bin/foo8 {
34
 
   audit allow change_profile -> :fo**:/bin/foo,
35
 
}
36
 
 
37
 
/usr/bin/foo9 {
38
 
   audit allow change_profile -> :fo?:/bin/foo,
39
 
}
40
 
 
41
 
/usr/bin/foo10 {
42
 
   audit allow change_profile -> :fo[ab]:/bin/foo,
43
 
}
44
 
 
45
 
/usr/bin/foo11 {
46
 
   audit allow change_profile -> :fo[^ab]:/bin/foo,
47
 
}
48
 
 
49
 
/usr/bin/foo12 {
50
 
   audit allow change_profile -> :fo*:/bin/fo*,
51
 
}
52
 
 
53
 
/usr/bin/foo13 {
54
 
   audit allow change_profile -> :fo**:/bin/fo**,
55
 
}
56
 
 
57
 
/usr/bin/foo14 {
58
 
   audit allow change_profile -> :fo?:/bin/fo?,
59
 
}
60
 
 
61
 
/usr/bin/foo15 {
62
 
   audit allow change_profile -> :fo[ab]:/bin/fo[ab],
63
 
}
64
 
 
65
 
/usr/bin/foo16 {
66
 
   audit allow change_profile -> :fo[^ab]:/bin/fo[^ab],
67
 
}