我创建了几个没有运行的简单剧本
---- hosts: testmachineuser: ec2-usersudo: yestasks:- name: Update all packages to latestyum: name=* state=latesttask:- name: obtain OS versionshell: Redhat-release
playbook应该输出一个带有主机名和 *** 作系统版本的文本文件.任何有关这方面的见解将受到高度赞赏.
解决方法 使用以下Jinja2表达式之一:{{ hostvars[inventory_hostname].ansible_distribution }}{{ hostvars[inventory_hostname].ansible_distribution_major_version }}{{ hostvars[inventory_hostname].ansible_distribution_version }}
哪里:
> hostvars和ansible _…由Ansible内置并自动收集
> ansible_distribution是Ansible正在处理的主机
例如,假设您针对运行CentOS 7发行版的主机host.example.com运行Ansible角色test_role:
---- deBUG: msg: "{{ hostvars[inventory_hostname].ansible_distribution }}"- deBUG: msg: "{{ hostvars[inventory_hostname].ansible_distribution_major_version }}"- deBUG: msg: "{{ hostvars[inventory_hostname].ansible_distribution_version }}"
会给你:
TASK [test_role : deBUG] *******************************************************ok: [host.example.com] => { "msg": "CentOS"}TASK [test_role : deBUG] *******************************************************ok: [host.example.com] => { "msg": "7"}TASK [test_role : deBUG] *******************************************************ok: [host.example.com] => { "msg": "7.5.1804"}总结
以上是内存溢出为你收集整理的linux – 如何创建Ansible playbook以获取远程主机的 *** 作系统版本?全部内容,希望文章能够帮你解决linux – 如何创建Ansible playbook以获取远程主机的 *** 作系统版本?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)