mirror of
https://github.com/ansible/ansible.git
synced 2026-02-03 20:40:24 -05:00
Fix ec2_setup task param quoting
This commit is contained in:
parent
9e44f7b7ba
commit
907c98ed7b
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@
|
|||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
- name: generate random string
|
||||
shell: python -c "import string,random; print ''.join(random.choice(string.ascii_lowercase) for _ in xrange(8));"
|
||||
command: python -c \"import string,random; print ''.join(random.choice(string.ascii_lowercase) for _ in xrange(8));\"
|
||||
register: random_string
|
||||
tags:
|
||||
- prepare
|
||||
|
|
|
|||
Loading…
Reference in a new issue