Searched defs:resolved (Results 1 - 1 of 1) sorted by relevance
/systemd/src/tmpfiles/ |
H A D | tmpfiles.c | 1151 _cleanup_free_ char *resolved = NULL; local 1177 r = specifier_printf(i->argument, specifier_table, NULL, &resolved); 1181 log_debug("Copying tree \"%s\" to \"%s\".", resolved, i->path); 1182 r = copy_tree(resolved, i->path, false); 1193 if (stat(resolved, &a) < 0) 1194 return log_error_errno(errno, "stat(%s) failed: %m", resolved); 1348 r = specifier_printf(i->argument, specifier_table, NULL, &resolved); 1353 r = symlink(resolved, i->path); 1360 return log_error_errno(errno, "symlink(%s, %s) failed: %m", resolved, i->path); 1363 if (r < 0 || !streq(resolved, [all...] |
Completed in 17 milliseconds