我在使用 Ansible 动态修改 Zabbix 代理配置文件时遇到问题。具体来说,我尝试使用带有循环的 ansible lineinfile 模块来更新文件中的多行。
该脚本有效地更改了文件中的值,但在尝试将变量合并到 Zabbix 代理配置中时,我遇到了语法错误。目标是将“Hostname=Zabbix Server”行替换为“Hostname=$HOSTNAME”,从而允许从目标计算机自动获取该值。例如,如果计算机名称为“computer1”,则代理文件应反映“Hostname=computer1”。
以下是我当前的 lineinfile 代码的相关片段:
- name: Update Zabbix Agent Configuration
ansible.builtin.lineinfile:
path: /etc/zabbix/zabbix_agentd.conf
regexp: "{{ item.regexp }}"
line: "{{ item.line }}"
loop:
- { regexp: '^Server=', line: 'Server=monlocal.xyz.com' }
- { regexp: '^ServerActive=', line: 'ServerActive=monlocal.xyz.com' }
- { regexp: '^Hostname=', line: 'Hostname={{ ansible_facts['hostname'] }}' }
这是我得到的错误。
The offending line appears to be:
- { regexp: '^ServerActive=', line: 'ServerActive=monlocal.xyz.com' }
^ here
There appears to be both 'k=v' shorthand syntax and YAML in this task. Only one syntax may be used.
We could be wrong, but this one looks like it might be an issue with
missing quotes. Always quote template expression brackets when they
start a value. For instance:
with_items:
- {{ foo }}
Should be written as:
with_items:
- "{{ foo }}"
我知道错误出在第三行。当我删除第三行时,我得到了预期的结果。任何帮助将不胜感激。
谢谢,优素福