Skip to content

Commit

Permalink
Don't delete the install_info file
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-lebot committed Feb 4, 2025
1 parent e493774 commit 69b62ba
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ public static List<string> GeneratedPaths(this ISession session)
return new List<string>
{
Path.Combine(configRoot, "auth_token"),
// install-info is technically created by the installer
Path.Combine(configRoot, "install_info"),
Path.Combine(configRoot, "python-cache"),
Path.Combine(configRoot, "ipc_cert.pem"),
};
Expand All @@ -100,6 +98,7 @@ public static List<string> PathsWithAgentAccess(this ISession session)
Path.Combine(configRoot, "logs"),
Path.Combine(configRoot, "datadog.yaml"),
Path.Combine(configRoot, "system-probe.yaml"),
Path.Combine(configRoot, "install_info"),
}
.Concat(session.GeneratedPaths()).ToList();
}
Expand Down

0 comments on commit 69b62ba

Please sign in to comment.