Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cf-agent/verify_files.c
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,10 @@ static PromiseResult VerifyFilePromise(EvalContext *ctx, char *path, const Promi
Log(LOG_LEVEL_ERR, "%s. There may be a symlink in the path that has a different "
"owner from the owner of its target (security risk).", msg);
}
else if (errno == ENOENT)
{
Log(LOG_LEVEL_INFO, "%s - Attempting to create...", msg);
}
else
{
Log(LOG_LEVEL_ERR, "%s", msg);
Expand Down
Loading