~ubuntu-branches/ubuntu/hardy/apparmor/hardy-proposed

« back to all changes in this revision

Viewing changes to parser/tst/simple_tests/flags_ok.sd

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Mathias Gug, Kees Cook
  • Date: 2008-01-03 13:29:31 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080103132931-ioypwnni24jj3b4t
Tags: 2.1+1075-0ubuntu1
[ Mathias Gug ]
* profiles/apparmor.d/abstractions/nameservice: update nameservice
  abstraction to support nscd setup.

[ Kees Cook ]
* merge with upstream trunk revision 1075.
* debian/{control,apparmor.postrm,apparmor.postinst,apparmor.initramfs}:
  dropped module hook since module is loaded in kernel automatically now.
* debian/rules: tweaked get-orig-source to use defined variables.
* debian/copyright: mention "get-orig-source" build rule.
* debian/{rules,control,libpam-apparmor.docs}: add libpam-apparmor now
  that PAM is 0.99.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# $Id: flags_ok.sd 66 2006-06-01 18:02:28Z steve-beattie $
 
2
# $Id: flags_ok.sd 1028 2007-11-16 09:31:33Z jrjohansen $
3
3
#=DESCRIPTION validate some uses of the profile flags.
4
4
#=EXRESULT PASS
5
5
# vim:syntax=subdomain
39
39
  /usr/X11R6/lib/lib*so* r,
40
40
  /does/not/exist8 r,
41
41
}
 
42
 
 
43
/does/not/exist6 (complain) {
 
44
  #include <includes/base>
 
45
 
 
46
  /usr/X11R6/lib/lib*so* r,
 
47
  /does/not/exist r,
 
48
}
 
49
 
 
50
/does/not/exist7 (audit) {
 
51
  #include <includes/base>
 
52
 
 
53
  /usr/X11R6/lib/lib*so* r,
 
54
  /does/not/exist2 r,
 
55
}
 
56
 
 
57
/does/not/exist8 (complain,audit) {
 
58
  #include <includes/base>
 
59
 
 
60
  /usr/X11R6/lib/lib*so* r,
 
61
  /does/not/exist5 r,
 
62
}
 
63
 
 
64
/does/not/exist9 (audit,complain) {
 
65
  #include <includes/base>
 
66
 
 
67
  /usr/X11R6/lib/lib*so* r,
 
68
  /does/not/exist7 r,
 
69
}
 
70
 
 
71
/does/not/exist10 (audit,complain,audit) {
 
72
  #include <includes/base>
 
73
 
 
74
  /usr/X11R6/lib/lib*so* r,
 
75
  /does/not/exist8 r,
 
76
}