1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Document that dnstxt lookup requires dnspython

Add a line in the docs to specify that dnstxt requires that you have the
dnspython package installed.
This commit is contained in:
Lorin Hochstein 2015-01-25 15:20:49 -05:00
parent 53a3644ecd
commit 0474b5ce5d

View file

@ -121,6 +121,7 @@ Here are some examples::
- debug: msg="{{ lookup('redis_kv', 'redis://localhost:6379,somekey') }} is value in Redis for somekey"
# dnstxt lookup requires the Python dnspython package
- debug: msg="{{ lookup('dnstxt', 'example.com') }} is a DNS TXT record for example.com"
- debug: msg="{{ lookup('template', './some_template.j2') }} is a value from evaluation of this template"