You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
187 B

module modreq_bool_global 1.0;
require {
bool bool_req;
class file { read write };
}
type mod_global_t;
type a_t;
type b_t;
if (bool_req) {
allow a_t b_t : file { read write };
}