mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 16:35:02 +01:00
14 lines
199 B
Text
14 lines
199 B
Text
#=DESCRIPTION Conditional tests with 'defined' keyword
|
|
#=EXRESULT PASS
|
|
|
|
@FOO = ""
|
|
|
|
/bin/true {
|
|
if defined @FOO {
|
|
/bin/true rix,
|
|
}
|
|
if defined @BAR {
|
|
/bin/false rix,
|
|
}
|
|
/dev/null r,
|
|
}
|