首页 文章

从Ansible中的变量中提取子字符串

提问于
浏览
0

编辑:我写了这个剧本,但它没有显示提取的变量:

---
- hosts: fppc
  gather_facts: false
  remote_user: xyz  
  connection: local
  tasks:
  - name: N1
    ios_command:
       commands:
         - sh run | i bann          
    register: sr

  - debug: msg="{{ sr.stdout}}"

  - set_fact: 
      rid: "{{ sr.stdout | regex_search('.*ID: (..)')  }}"

  - debug: msg="{{ rid }}"

执行:

ansible@Ansible:~$ ansible-playbook pb1.yml

PLAY [fppc] *************************************************************************

TASK [N1] ***************************************************************************
ok: [192.168.250.161]

TASK [debug] ************************************************************************
ok: [192.168.250.161] => {
    "msg": [
        "banner login ^CID: A4"
    ]
}

TASK [set_fact] *********************************************************************
fatal: [192.168.250.161]: FAILED! => {"failed": true, "msg": "Unexpected templating type error occurred on ({{ sr.stdout | regex_search('.*ID: (..)')  }}): expected string or buffer"}
        to retry, use: --limit @/home/ansible/pb1.retry

PLAY RECAP **************************************************************************
192.168.250.161            : ok=2    changed=0    unreachable=0    failed=1   

ansible@Ansible:~$

1 回答

  • -1

    我找到了解决方案:

    ---
    - hosts: fppc
      gather_facts: false
      remote_user: xyz
      connection: local
    
      tasks:
      - name: N1
        ios_command:
           commands:
             - sh run         
        register: sr
    
      - set_fact:
          temp: "{{ sr.stdout_lines | join }}"
    
      - set_fact:
          rid: "{{  temp | regex_replace('.*ID: (..).*', '\\1')  }}"
    
      - debug: msg="{{ rid }}"
    

    执行:

    ansible@Ansible:~$ ansible-playbook pb1.yml
    
    PLAY [fppc] ********************************************************************
    
    TASK [N1] **********************************************************************
    ok: [192.168.250.161]
    
    TASK [set_fact] ****************************************************************
    ok: [192.168.250.161]
    
    TASK [set_fact] ****************************************************************
    ok: [192.168.250.161]
    
    TASK [debug] *******************************************************************
    ok: [192.168.250.161] => {
        "msg": "A4"
    }
    
    PLAY RECAP *********************************************************************
    192.168.250.161            : ok=4    changed=0    unreachable=0    failed=0
    

相关问题