添加字段到dict项目

时间:2016-12-15 02:28:30

标签: ansible ansible-playbook

考虑以下游戏。我要做的是添加一个字段tmp_path,它基本上是附加到脚本dict中每个元素的键和修订。

---
- hosts: localhost
  connection: local
  gather_facts: no
  vars:
    scripts:
      a.pl:
        revision: 123
      b.pl:
        revision: 456
  tasks:
     - with_dict: "{{ scripts }}"
       debug:
         msg: "{{ item.key }}_{{ item.value.revision }}"
#     - with_items: "{{ scripts }}"
#       set_fact: {{item.value.tmp_path}}="{{item.key}}_{{item.value.revision}}"
#     - with_items: "{{ scripts }}"
#       debug:
#         msg: "{{ item.value.tmp_path }}"
...

显然,评论的代码不起作用,任何想法如何让这个工作?是否可以直接更改脚本dict,或者我应该以某种方式创建一个新的dict来引用?

顺便欢迎来修正我要做的事情的术语。

1 个答案:

答案 0 :(得分:0)

好吧,我想我得到了一个解决方案(下面),至少让我向前迈进。缺点是它已经删除了我的字典的结构,并且似乎有点多余必须重新定义所有字段并使用新变量,如果任何人都可以提供更好的解决方案,我将接受它。

---
- hosts: localhost
  connection: local
  gather_facts: no
  vars:
    scripts:
      a.pl:
        revision: 123
      b.pl:
        revision: 456
  tasks:
     - with_dict: "{{ scripts }}"
       debug:
         msg: "{{ item.key }}_{{ item.value.revision }}"
     - with_dict: "{{ scripts }}"
       set_fact:
         new_scripts: "{{ (new_scripts | default([]))  + [ {'name': item.key, 'revision': item.value.revision, 'tmp_path': item.key ~ '_' ~ item.value.revision}] }}"
#     - debug:
#         var: x
#     - with_dict: "{{ scripts }}"
     - with_items: "{{ new_scripts }}"
       debug:
         msg: "{{ item.tmp_path }}"
...
顺便提一下,以下问题向我指出了正确的方向: Using Ansible set_fact to create a dictionary from register results