From a083b4875e8dec5ce5379d8bc437d750cd338c37 Mon Sep 17 00:00:00 2001 From: itsbill Date: Mon, 12 Feb 2018 09:47:08 -0500 Subject: [PATCH] tmpfiles: age root-owned read-only files, by default (#7917) [zj: The note in NEWS was added in 82c8e3e6503a40684cf265842bb1c26a8f7681b5 and released as part of systemd-237.] --- src/tmpfiles/tmpfiles.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 29e66b0..4b35746 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -568,12 +568,6 @@ static int dir_cleanup( continue; } - /* Do not delete read-only files owned by root */ - if (s.st_uid == 0 && !(s.st_mode & S_IWUSR)) { - log_debug("Ignoring \"%s/%s\": read-only and owner by root.", p, dent->d_name); - continue; - } - sub_path = strjoin(p, "/", dent->d_name); if (!sub_path) { r = log_oom(); -- 2.7.4