sysctl: don't warn if sysctls are gone

This commit is contained in:
Lennart Poettering 2011-01-05 00:05:53 +01:00
parent a78899f541
commit 5707631ec6
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ static void apply_sysctl(const char *property, const char *value) {
*n = '/';
if ((r = write_one_line_file(p, value)) < 0) {
log_warning("Failed to write '%s' to '%s': %s", value, p, strerror(-r));
log_full(r == -ENOENT ? LOG_DEBUG : LOG_WARNING,
"Failed to write '%s' to '%s': %s", value, p, strerror(-r));
if (r != -ENOENT)
exit_code = r;