From cce2cad8dc146e2bafd07a361a23ab4635277c99 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Tue, 16 Apr 2013 20:41:42 -0400 Subject: [PATCH] Fix with_sequence doc error --- docsite/latest/rst/playbooks2.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/latest/rst/playbooks2.rst b/docsite/latest/rst/playbooks2.rst index 4b3dd475ae0..47fb2f0d71c 100644 --- a/docsite/latest/rst/playbooks2.rst +++ b/docsite/latest/rst/playbooks2.rst @@ -488,7 +488,7 @@ Negative numbers are not supported. This works as follows:: # create some test users - user: name={{ item }} state=present groups=evens - with_sequence: start=0 stop=32 format=testuser%02x + with_sequence: start=0 end=32 format=testuser%02x # create a series of directories with even numbers for some reason - file: dest=/var/stuff/{{ item }} state=directory