linux – 获取当前主机名并使用ansible将其推送到conf文件中

前端之家收集整理的这篇文章主要介绍了linux – 获取当前主机名并使用ansible将其推送到conf文件中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在研究一个ansible playbook来获取服务器的当前主机名,然后将其设置为配置文件.我无法弄明白如何使用lineinfile模块推送 shell输出.
- name: Get hostname
    shell: echo $HOSTNAME
    register: result

  - name: Set hostname on conf file
    lineinfile: dest=/etc/teste/linux/zabbix_agentd.conf regexp="^Hostname=.*" insertafter="^# Hostname=" line=Hostname=????

解决方法

通常,要查看变量内部的内容,可以使用调试模块.
- debug:
    var: result

这应该显示一个对象及其属性,其中包括stdout.这是上一个命令的完整结果.因此,要使用第一个任务的输出,您将使用result.stdout.

要使用任何变量,您将使用Jinja2表达式:{{whatever}}.所以你的任务看起来像这样:

- name: Set hostname on conf file
  lineinfile:
    dest: /etc/teste/linux/zabbix_agentd.conf
    regexp: ^Hostname=.*
    insertafter: ^# Hostname=
    line: Hostname={{ result.stdout }}

理论如此之多,但真正的答案就来了.不要那样做.当然Ansible已经知道主机名.

清单中定义的主机名为{{inventory_hostname}}.服务器报告的主机名是{{ansible_hostname}}.另外还有{{ansible_fqdn}}.因此,只需使用其中任何一项而不是运行其他任务:

- name: Set hostname on conf file
  lineinfile:
    dest: /etc/teste/linux/zabbix_agentd.conf
    regexp: ^Hostname=.*
    insertafter: ^# Hostname=
    line: Hostname={{ ansible_hostname }}
原文链接:https://www.f2er.com/linux/396687.html

猜你在找的Linux相关文章