Add Troubleshooting
parent
ace03d3aa4
commit
155757ba32
1 changed files with 30 additions and 0 deletions
30
Troubleshooting.md
Normal file
30
Troubleshooting.md
Normal file
|
|
@ -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"
|
||||
},
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue