ansible/bench: make end= configurable.

pull/564/head
David Wilson 5 years ago
parent b8a0e0f929
commit 2209d880e4

@ -7,4 +7,4 @@
- hosts: all
tasks:
- command: hostname
with_sequence: start=1 end=100
with_sequence: start=1 end="{{end|default(100)}}"

@ -11,4 +11,4 @@
mode: 0755
content:
Hello from {{item}}
with_sequence: start=1 end=20
with_sequence: start=1 end={{end|default(20)}}

Loading…
Cancel
Save