Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
tmpfiles: age root-owned read-only files, by default (#7917)
[zj: The note in NEWS was added in 82c8e3e
and released as part of systemd-237.]
  • Loading branch information
itsbill authored and keszybz committed Feb 12, 2018
1 parent b8e2400 commit a083b48
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/tmpfiles/tmpfiles.c
Expand Up @@ -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();
Expand Down

0 comments on commit a083b48

Please sign in to comment.