~mathiaz/apparmor/ubuntu-mathiaz

« back to all changes in this revision

Viewing changes to debian/apparmor.initramfs

  • Committer: Mathias Gug
  • Date: 2008-02-04 18:57:00 UTC
  • mfrom: (885.1.5 apparmor)
  • Revision ID: mathiaz@ubuntu.com-20080204185700-wwlyq0ksssxclv8w
Merge  ubuntu branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
# initramfs hook for apparmor
3
 
 
4
 
PREREQ=""
5
 
 
6
 
# Output pre-requisites
7
 
prereqs()
8
 
{
9
 
        echo "$PREREQ"
10
 
}
11
 
 
12
 
case "$1" in
13
 
    prereqs)
14
 
        prereqs
15
 
        exit 0
16
 
        ;;
17
 
esac
18
 
 
19
 
. /usr/share/initramfs-tools/hook-functions
20
 
 
21
 
force_load apparmor
22
 
 
23
 
exit 0