如何检查Ansible命令输出中是否存在字符串列表?

时间:2013-11-12 23:37:39

标签: grep ansible

我希望在shell命令不返回预期输出的情况下运行Ansible操作。 ogr2ogr --formats漂亮地打印兼容文件格式的列表。我想grep格式输出,如果我的预期文件格式不在输出中,我想运行命令来安装这些组件。有谁知道怎么做?

- name: check if proper ogr formats set up
  command: ogr2ogr --formats | grep $item
  with_items:
    - PostgreSQL
    - FileGDB
    - Spatialite
  register: ogr_check

# If grep from ogr_check didn't find a certain format from with_items, run this
- name: install proper ogr formats
  action: DO STUFF
  when: Not sure what to do here

2 个答案:

答案 0 :(得分:27)

首先,请确保您使用的是Ansible 1.3或更高版本。 Ansible仍然可以从我看到的内容中快速变化,并且很多很棒的功能和错误修复都是至关重要的。

至于检查,你可以尝试这样的事情,利用grep的退出代码:

- name: check if proper ogr formats set up
  shell: ogr2ogr --formats | grep $item
  with_items:
    - PostgreSQL
    - FileGDB
    - Spatialite
  register: ogr_check
  # grep will exit with 1 when no results found. 
  # This causes the task not to halt play.
  ignore_errors: true

- name: install proper ogr formats
  action: DO STUFF
  when: ogr_check|failed

还有一些其他有用的寄存器变量,即item.stdout_lines。如果您想详细了解变量中注册的内容,请尝试以下任务:

- debug: msg={{ogr_check}}

然后通过ansible-playbook my-playbook.yml -vv double verbose 模式运行任务。它会吐出很多有用的字典值。

答案 1 :(得分:6)

我的解决方案:

- name: "Get Ruby version"
command: "/home/deploy_user/.rbenv/shims/ruby -v"
changed_when: true
register: ruby_installed_version
ignore_errors: true

- name: "Installing Ruby 2.2.4"
command: '/home/deploy_user/.rbenv/libexec/rbenv install -v {{ruby_version}}'
become: yes
become_user: deployer
when: " ( ruby_installed_version | failed ) or ('{{ruby_version}}' not in ruby_installed_version.stdout) "