mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Fixing up shell quoting issues
This commit is contained in:
parent
593057515c
commit
75e5b6401c
2 changed files with 22 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue