-
Notifications
You must be signed in to change notification settings - Fork 28
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
loop_control.label will not be considered #34
Comments
This will do the trick,
|
Indeed, your original answer fixed the Your newer edited answer also adjusts the slightly misleading time measurement for elements in a loop. [15:20:00] certbot : Obtain or renew certificates
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364} | 1m17s
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364} | 1m17s
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364} | 1m17s
[15:21:18] certbot : Force renew (new certificates only) [15:17:04] certbot : Obtain or renew certificates
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364}
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364}
$host | CHANGED - {'name': '$domain', 'http_listen_port': 12364}
↳ $host | CHANGED | 1m6s
[15:18:11] certbot : Force renew (new certificates only) |
@rsguhr - Just update comment with fixes for skipped loop items. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The default behavior of Ansible is that you see the entire content of a loop element. This can be a lot and impractical. You can use
loop_control.label
to change what should be displayed. Butdump_loop_items
ignores the option and dumps the entire loop element.Example:
Plain Ansible output:
anstomlog (w/ dump_loop_items) output
The text was updated successfully, but these errors were encountered: