commit | c904f64d84db8c4eebedf210ba10893f19ba05ed | [log] [tgz] |
---|---|---|
author | Lennart Poettering <lennart@poettering.net> | Fri Feb 25 01:47:31 2011 +0100 |
committer | Lennart Poettering <lennart@poettering.net> | Fri Feb 25 01:47:31 2011 +0100 |
tree | 4c3d73acb9c6aa32d073107b8dd262a8c48a4334 | |
parent | 8e20e31a65ec9e637abf3821087946e9160001ac [diff] [blame] |
label: udev might be making changes in /dev while we iterate through it Also, there are most likely dead symlinks in there, so let's ignore ENOENT when we relabel. https://bugzilla.redhat.com/show_bug.cgi?id=680169
diff --git a/src/tmpfiles.c b/src/tmpfiles.c index 917747a..0302262 100644 --- a/src/tmpfiles.c +++ b/src/tmpfiles.c
@@ -507,7 +507,7 @@ break; } - if ((r = label_fix(i->path)) < 0) + if ((r = label_fix(i->path, false)) < 0) goto finish; log_debug("%s created successfully.", i->path);