美文网首页
ansible 索引 主机清单

ansible 索引 主机清单

作者: _fishman | 来源:发表于2020-04-03 13:30 被阅读0次
---
- hosts: all
  gather_facts: false
  tasks:
    - name: 1
      set_fact:
        host: "{{ ansible_play_hosts_all |length }}"

    - debug: var=host
    
    - name: 2
      set_fact:
         container_name_index: "{{ansible_play_hosts.index(inventory_hostname)}}" 
    - debug: var=container_name_index

相关文章

网友评论

      本文标题:ansible 索引 主机清单

      本文链接:https://www.haomeiwen.com/subject/abshphtx.html