[systemd-commits] src/sysctl.c

Lennart Poettering lennart at kemper.freedesktop.org
Tue Jan 4 15:06:12 PST 2011


 src/sysctl.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 5707631ec6ef3b5731825f3fd52ccbecbf12c073
Author: Lennart Poettering <lennart at poettering.net>
Date:   Wed Jan 5 00:05:53 2011 +0100

    sysctl: don't warn if sysctls are gone

diff --git a/src/sysctl.c b/src/sysctl.c
index 6b0e9aa..38ea2d1 100644
--- a/src/sysctl.c
+++ b/src/sysctl.c
@@ -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;



More information about the systemd-commits mailing list