23 lines
569 B
Plaintext
23 lines
569 B
Plaintext
##################################
|
|
#
|
|
# System User configuration.
|
|
#
|
|
|
|
#
|
|
# gen_user(username, role_set, mls_defaultlevel, mls_range)
|
|
#
|
|
define(`gen_user',`
|
|
user $1 roles { $2 } ifdef(`enable_mls', `level $3 range $4');
|
|
')
|
|
|
|
#
|
|
# system_u is the user identity for system processes and objects.
|
|
# There should be no corresponding Unix user identity for system,
|
|
# and a user process should never be assigned the system user
|
|
# identity.
|
|
#
|
|
gen_user(system_u, system_r, s0, s0 - s9:c0.c127)
|
|
|
|
# Normal users should not be added to this file,
|
|
# but instead added to the users file.
|