File: aa-enabled.pod

package info (click to toggle)
apparmor 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 34,800 kB
  • sloc: ansic: 24,940; python: 24,595; sh: 12,524; cpp: 9,024; yacc: 2,061; makefile: 1,921; lex: 1,215; pascal: 1,145; perl: 1,033; ruby: 365; lisp: 282; exp: 250; java: 212; xml: 159
file content (103 lines) | stat: -rw-r--r-- 2,361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# This publication is intellectual property of Canonical Ltd. Its contents
# can be duplicated, either in part or in whole, provided that a copyright
# label is visibly located on each copy.
#
# All information found in this book has been compiled with utmost
# attention to detail. However, this does not guarantee complete accuracy.
# Neither Canonical Ltd, the authors, nor the translators shall be held
# liable for possible errors or the consequences thereof.
#
# Many of the software and hardware descriptions cited in this book
# are registered trademarks. All trade names are subject to copyright
# restrictions and may be registered trade marks. Canonical Ltd
# essentially adheres to the manufacturer's spelling.
#
# Names of products and trademarks appearing in this book (with or without
# specific notation) are likewise subject to trademark and trade protection
# laws and may thus fall under copyright restrictions.
#


=pod

=head1 NAME

aa-enabled - test whether AppArmor is enabled

=head1 SYNOPSIS

B<aa-enabled> [options]

=head1 DESCRIPTION

B<aa-enabled> is used to determine if AppArmor is enabled.

=head1 OPTIONS

B<aa-enabled> accepts the following arguments:

=over 4

=item -h, --help

Display a brief usage guide.

=item -q, --quiet

Do not output anything to stdout. This option is intended to be used by
scripts that simply want to use the exit code to determine if AppArmor is
enabled.

=item -x, --exclusive

Require AppArmor to have exclusive access to shared LSM interfaces to
be considered enabled.

=back

=head1 EXIT STATUS

Upon exiting, B<aa-enabled> will set its exit status to the following values:

=over 4

=item B<0>

if AppArmor is enabled.

=item B<1>

if AppArmor is not enabled/loaded.

=item B<2>

intentionally not used as an B<aa-enabled> exit status.

=item B<3>

if the AppArmor control files aren't available under /sys/kernel/security/.

=item B<4>

if B<aa-enabled> doesn't have enough privileges to read the apparmor control files.

=item B<10>

AppArmor is enabled but does not have access to shared LSM interfaces.

=item B<64>

if any unexpected error or condition is encountered.

=back

=head1 BUGS

If you find any bugs, please report them at
L<https://gitlab.com/apparmor/apparmor/-/issues>.

=head1 SEE ALSO

apparmor(7), apparmor.d(5), aa_is_enabled(2), and L<https://wiki.apparmor.net>.

=cut