ani*_*nil 4 ansible ansible-template ansible-2.x ansible-facts
我的剧本:
- name: JBoss KeyStore and Truststore passwords will be stored in the password vault
#shell: less "{{ vault }}"
shell: cat "{{ vault }}"
register: vault_contents
tags:
- BW.6.1.1.10
with_items:
- "{{ vault }}"
- debug:
msg: "JBoss config filedoes not contains the word vault"
when: vault_contents.stdout.find('$VAULT') == -1
Run Code Online (Sandbox Code Playgroud)
我正在尝试使用 Jinga2 模板通过 ansible 读取多个文件并将输出解析为 stdout 并搜索关键字并报告它。
它失败并出现以下错误:
TASK [testing_roles : debug] **************************************************************************. *****************************************************************
fatal: [d84e4fe137f4]: FAILED! => {"failed": true, "msg": "The conditional check 'vault_contents.stdout.find('$VAULT') == -1' failed.
The error was: error while evaluating conditional (vault_contents.stdout.find('$VAULT') == -1): 'dict object' has no attribute 'stdout'\n\nThe error appears to have been in '/Ansible/Ansible/Relearn/testing_roles/roles/testing_roles/tasks/main.yml': line 49, column 5, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n - \"{{ vault }}\"\n - debug:\n ^ here\n"}
to retry, use: --limit @/Ansible/Ansible/Relearn/testing_roles/playbook.retry
Run Code Online (Sandbox Code Playgroud)
当我用单个文件条目附加它时,它会按预期工作,但是当它更改为一系列文件时,它会失败。
这是在 Ansible 中扫描多个文件的正确方法还是应该使用其他模块或方法。
任何帮助是极大的赞赏。
在 vars 文件中,它具有以下内容:
vault:
- /jboss-as-7.1.1.Final/standalone/configuration/standalone-full-ha.xml
Run Code Online (Sandbox Code Playgroud)
谢谢
检查- debug: var=vault_contents将告诉您,当与循环结构一起使用时,例如with_items:,寄存器变量有一个包含循环每次迭代结果的list调用results。这也记录在精细手册中。
所以,你想要的可能是:
- debug:
msg: "JBoss config {{ item.item }} does not contain the word vault"
when: item.stdout.find('$VAULT') == -1
with_items: '{{ vault_contents.results }}'
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
22376 次 |
| 最近记录: |