Sign in
android
/
platform
/
external
/
selinux
/
a6034f1add4e325717fb186710f1f9ff09ebee65
/
.
/
libsepol
/
tests
/
policies
/
test-deps
/
modreq-bool-opt.conf
blob: 27af4f20f3a3d3b8aefc25a42aaeab0da9946775 [
file
] [
log
] [
blame
]
module
modreq_bool_opt
1.0
;
require
{
class
file
{
read write
};
}
type
mod_global_t
;
optional
{
require
{
bool
bool_req
;
}
type
a_t
;
type
b_t
;
type
mod_opt_t
;
if
(
bool_req
)
{
allow
a_t
b_t
:
file
{
read write
};
}
}