mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-27 03:21:32 +03:00
Don't show a warning message in non-enforcing mode.
If we fail to load the SELinux policy only log an error message in enforcing mode.
This commit is contained in:
parent
85f19d825e
commit
25bafad67f
@ -72,12 +72,13 @@ int selinux_setup(char *const argv[]) {
|
||||
return -errno;
|
||||
|
||||
} else {
|
||||
log_full(enforce > 0 ? LOG_ERR : LOG_WARNING, "Failed to load SELinux policy.");
|
||||
|
||||
unlink("/dev/.systemd-relabel-run-dev");
|
||||
|
||||
if (enforce > 0)
|
||||
if (enforce > 0) {
|
||||
log_full(LOG_ERR, "Failed to load SELinux policy.");
|
||||
return -EIO;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user