-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add troubleshooting instructions about service_facts
breaking Ubuntu 20.04
#449
Add troubleshooting instructions about service_facts
breaking Ubuntu 20.04
#449
Conversation
README.md
Outdated
|
||
### Ubuntu 20.04 broken by service_facts | ||
|
||
Running the `service_facts` module on Ubuntu 20.04 causes the following error: | ||
|
||
``` | ||
localhost | FAILED! => { | ||
"changed": false, | ||
"msg": "Malformed output discovered from systemd list-unit-files: accounts-daemon.service enabled enabled " | ||
} | ||
``` | ||
|
||
This can be fixed by [updating Ansible to `v2.9.8` or above](https://github.com/ansible/ansible/blob/stable-2.9/changelogs/CHANGELOG-v2.9.rst#id61). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: could you put this before the links?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right ! Done in c788193.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor suggestions and 👍
README.md
Outdated
} | ||
``` | ||
|
||
This can be fixed by [updating Ansible to `v2.9.8` or above](https://github.com/ansible/ansible/blob/stable-2.9/changelogs/CHANGELOG-v2.9.rst#id61). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be fixed by [updating Ansible to `v2.9.8` or above](https://github.com/ansible/ansible/blob/stable-2.9/changelogs/CHANGELOG-v2.9.rst#id61). | |
To fix this, [update Ansible to `v2.9.8` or above][16]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and then add at the bottom of the page:
[16]: https://github.com/ansible/ansible/blob/stable-2.9/changelogs/CHANGELOG-v2.9.rst#id61
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right ! Done in 4dd2db0
We received support cases related to Ansible <
v.2.9.8
breaking Ubuntu 20.04 when running theservice_facts
module. This PR adds a troubleshooting note about this specific issue.There were plans about adding it to the README but it was still missing so here it is !