I've got the pip module working to set up my virtualenv:

  tasks:
  - name: create virtualenv and install third-party packages
    pip: chdir="{{ remote_base_dir }}/deploy"
         virtualenv=python-env
         executable="{{ remote_base_dir }}/deploy/python-env/bin/pip"
         requirements={{ item }}
    with_items:
      - base-requirements
      - web-requirements


But, I'd like to also customize the python prompt by passing:

--prompt="(my prompt) "

to the virtualenv command.  How can I do that?

-- 
You received this message because you are subscribed to the Google Groups 
"Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/ansible-project/1fced510-fd74-4be1-b58c-c8e6886b5a7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to