From 155757ba3226af1f0540c87c58d81337f44320da Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Wed, 17 Dec 2025 22:56:05 -0600 Subject: [PATCH] Add Troubleshooting --- Troubleshooting.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Troubleshooting.md diff --git a/Troubleshooting.md b/Troubleshooting.md new file mode 100644 index 0000000..2c14fa2 --- /dev/null +++ b/Troubleshooting.md @@ -0,0 +1,30 @@ +# Troubleshooting + +## Enroll doesn't seem to 'see' files or directories + +You may need to use `--dangerous` to capture certain files or paths that Enroll normally considers sensitive. + +Inspect the `state.json` file generated by the `harvest` command to see a list of files that may have been excluded, and why. For example: + +```json + "excluded": [ + { + "path": "/etc/openvpn/easy-rsa/pki/.rnd", + "reason": "binary_like" + } + ], +``` + +```json + { + "path": "/etc/subgid-", + "reason": "denied_path" + }, +``` + +```json + { + "path": "/etc/openvpn/ca.key", + "reason": "sensitive_content" + }, +``` \ No newline at end of file