Skip to content
Snippets Groups Projects
Unverified Commit 76f52f2e authored by till's avatar till
Browse files

Chore: troubleshooting document

Related: #171 #165 #143
parent f2056813
No related branches found
No related tags found
No related merge requests found
...@@ -104,6 +104,10 @@ Combining molecule and travis CI allows us to test how new PRs will behave when ...@@ -104,6 +104,10 @@ Combining molecule and travis CI allows us to test how new PRs will behave when
See [contributor guideline](CONTRIBUTING.md). See [contributor guideline](CONTRIBUTING.md).
## Troubleshooting
See [troubleshooting](TROUBLESHOOTING.md).
## License ## License
This project is licensed under MIT License. See [LICENSE](/LICENSE) for more details. This project is licensed under MIT License. See [LICENSE](/LICENSE) for more details.
# Troubleshooting
## Bad requests (HTTP 400)
This role downloads checksums from the Github project to verify the integrity of artifacts installed on your servers. When downloading the checksums, a "bad request" error might occur.
This happens in environments which (knowningly or unknowling) use the [netrc mechanism](https://www.gnu.org/software/inetutils/manual/html_node/The-_002enetrc-file.html) to auto-login into servers.
Unless netrc is needed by your playbook and ansible roles, please unset the var like so:
```
$ NETRC= ansible-playbook ...
```
Or:
```
$ export NETRC=
$ ansible-playbook ...
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment