From: itsbill Date: Mon, 12 Feb 2018 14:47:08 +0000 (-0500) Subject: tmpfiles: age root-owned read-only files, by default (#7917) X-Git-Tag: v238~114 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a083b4875e8dec5ce5379d8bc437d750cd338c37;p=platform%2Fupstream%2Fsystemd.git 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.] --- 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();