Fixing up shell quoting issues

This commit is contained in:
James Cammarata 2014-07-21 20:40:58 -05:00
commit 75e5b6401c
2 changed files with 22 additions and 9 deletions

View file

@ -17,7 +17,7 @@
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- name: generate random string
command: 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