ansible 创建virtulenv 环境

发布于 2022-09-02 00:58:15 字数 1544 浏览 25 评论 0

vars:

project:

  virtualenv_path: "{{ ansible_env.HOME }}/.virtualenvs"
  shell_rc_file: "{{ ansible_env.HOME }}/.bashrc"
  python: /usr/bin/python3
 

---
- name: set workon home for virtualenvs
  lineinfile: >
    dest={{ project.shell_rc_file }}
    regexp='export WORKON_HOME'
    line='export WORKON_HOME={{ project.virtualenv_path }}'
    state=present
    backup=yes
    create=yes

- name: set virtualenvwrapper python path
  lineinfile: >
    dest={{ project.shell_rc_file }}
    regexp='export VIRTUALENVWRAPPER_PYTHON'
    line='export VIRTUALENVWRAPPER_PYTHON={{ project.python }}'
    state=present
    backup=yes
    create=yes

- name: load virtulenvwrapper script
  lineinfile: >
    dest={{ project.shell_rc_file }}
    regexp='export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh'
    line='export VIRTUALENVWRAPPER_SCRIPT=/usr/local/bin/virtualenvwrapper.sh'
    state=present
    backup=yes
    create=yes

- name: load virtulenvwrapper lazy
  lineinfile: >
    dest={{ project.shell_rc_file }}
    regexp='source /usr/local/bin/virtualenvwrapper_lazy.sh'
    line='source /usr/local/bin/virtualenvwrapper_lazy.sh'
    state=present
    backup=yes
    create=yes

- name: source bashrc
  command: source {{ project.shell_rc_file }}
  args:
    executable: /bin/bash
    
- name: 
  command: mkvirtulenv haha 
  args:
    executable: /bin/bash  

errors:
不能正确执行mkvirtulenv 命令, 感觉不能读取bashrc的执行。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文