mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-05 17:01:00 +01:00
18 lines
236 B
Text
18 lines
236 B
Text
![]() |
#=DESCRIPTION basic conditional statements w/file rules
|
||
|
#=EXRESULT PASS
|
||
|
|
||
|
$FOO=true
|
||
|
$BAR = False
|
||
|
|
||
|
/bin/true {
|
||
|
/bin/false rix,
|
||
|
if ${FOO} {
|
||
|
/bin/true rix,
|
||
|
}
|
||
|
/bin/true rix,
|
||
|
if ${BAR} {
|
||
|
/etc/shadow rw,
|
||
|
}
|
||
|
/bin/sh rix,
|
||
|
}
|