diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-12-31 00:11:01 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2021-12-31 03:11:43 +0900 |
commit | b78d7f246899687a1697cdcebe93d8512c5e7c4b (patch) | |
tree | 9032992cf3e8125c0890888f19c005863801eb2a /src | |
parent | 0d03e672a97c6ee85f563648e1ff40c88ce81d85 (diff) | |
download | systemd-b78d7f246899687a1697cdcebe93d8512c5e7c4b.tar.gz |
sysusers: use filename if /proc is not mounted
During system install, /proc may not be mounted yet.
Fixes RHBZ#2036217 (https://bugzilla.redhat.com/show_bug.cgi?id=2036217).
Diffstat (limited to 'src')
-rw-r--r-- | src/sysusers/sysusers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sysusers/sysusers.c b/src/sysusers/sysusers.c index 015e3a9ae4..07a65a2ebc 100644 --- a/src/sysusers/sysusers.c +++ b/src/sysusers/sysusers.c @@ -284,7 +284,7 @@ static int make_backup(const char *target, const char *x) { /* Copy over the access mask. Don't fail on chmod() or chown(). If it stays owned by us and/or * unreadable by others, then it isn't too bad... */ - r = fchmod_and_chown(fileno(dst), st.st_mode & 07777, st.st_uid, st.st_gid); + r = fchmod_and_chown_with_fallback(fileno(dst), dst_tmp, st.st_mode & 07777, st.st_uid, st.st_gid); if (r < 0) log_warning_errno(r, "Failed to change access mode or ownership of %s: %m", backup); |