mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 09:21:00 +01:00
22 lines
250 B
Text
22 lines
250 B
Text
![]() |
# taken from cond50.sd
|
||
|
#=DESCRIPTION simple else clause
|
||
|
#=EXRESULT PASS
|
||
|
|
||
|
$FOO=true
|
||
|
|
||
|
/bin/true {
|
||
|
if $FOO {
|
||
|
/bin/true rix,
|
||
|
} else {
|
||
|
/bin/false rix,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/bin/false {
|
||
|
if not $FOO {
|
||
|
/bin/true rix,
|
||
|
} else {
|
||
|
/bin/false rix,
|
||
|
}
|
||
|
}
|