1type system_server_startup, domain, coredomain;
2type system_server_startup_tmpfs, file_type;
3
4tmpfs_domain(system_server_startup)
5
6# Create JIT memory
7allow system_server_startup self:process execmem;
8allow system_server_startup system_server_startup_tmpfs:file { execute read write open map };
9
10# Allow system_server_startup to run setcon() and enter the
11# system_server domain
12allow system_server_startup self:process setcurrent;
13allow system_server_startup system_server:process dyntransition;
14
15# Child of the zygote.
16allow system_server_startup zygote:process sigchld;
17