sysctl: don't consider missing kernel options fatal

This commit is contained in:
Lennart Poettering 2010-11-18 23:03:42 +01:00
parent 8e1bd70d4c
commit 24a3597372
1 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,9 @@ static void apply_sysctl(const char *property, const char *value) {
if ((r = write_one_line_file(p, value)) < 0) {
log_warning("Failed to write '%s' to '%s': %s", value, p, strerror(-r));
exit_code = r;
if (r != -ENOENT)
exit_code = r;
}
free(p);