我如何确认使用Ansible安装了python软件包

我正在编写一个ansible剧本,我首先要安装pew,然后过渡到该pew环境中以安装其他一些python库.

所以,我的剧本看起来像这样…

tasks:

# task 1
- name: install pew if necessary
  command: pip install pew

# task 2
- name: create new pew environment if necessary
  command: pew new devpi-server

# task 3
- name: transition to pew environment
  command: pew workon devpi-server

# task 4
- name: install devpi-server
  command: pip install devpi-server

# task 5
- name: run devpi server
  command: devpi-server ## various args

本着保持我的剧本无所不能的精神,我只想在必要时执行所有这些任务.

因此,我只想安装尚未安装的pew,如果还不存在则只想创建一个新的pew环境,如果我们还没有安装pew则只想在pew环境上工作…等等. ..

有人对如何做到这一点有好的建议吗?我对ansible条件语句有些熟悉,但是仅当它类似于“是否下载文件”之类的条件时

我还不需要确定是否已安装程序,是否加载了虚拟环境等.

解决方法:

您可以在Ansible中使用Pip module来确保已安装某些软件包.

对于您的条件,我将参考:How to make Ansible execute a shell script if a package is not installedhttp://docs.ansible.com/ansible/playbooks_conditionals.html#register-variables-这些应该使您走上正确的道路.

因此,您的剧本看起来像:

- pip: name=pew

- name: Check if pew env exists
  command: pew command
  register: pew_env_check

- name: Execute script if pew environment doesn't exist
  command: somescript
  when: pew_env_check.stdout.find('no packages found') != -1
上一篇:python-在virtualenv中使用CUDA服务Theano


下一篇:安装flask