其他分享
首页 > 其他分享> > Asible 批量跑出服务器相关信息

Asible 批量跑出服务器相关信息

作者:互联网

1、定义剧本(我这里只输出序列号)

[root@libin3]# cat libin.yml 
- hosts: task
  gather_facts: no
  tasks:
    - name: fetch
      shell: |
        dmidecode -t 1 | grep "Serial Number" | awk -F ":" '{print $2}'
      register: serial
    - name: dd
      shell: |
        echo "{{serial.stdout}},{{inventory_hostname}}" >> libin.csv
      delegate_to: localhost
2、定义清单


[root@libin3]# cat hosts [task] ip地址 [task:vars] ansible_become=yes ansible_become_method=sudo ansible_become_user=root ansible_become_password= ansible_user= ansible_password=

  

标签:libin3,task,Asible,批量,ansible,become,服务器,serial,root
来源: https://www.cnblogs.com/libin-linux/p/16460812.html