ansible を使用して、ジュニパー デバイスに構成をプッシュしようとしています。接続に netconf を使用して、以下のプレイブックを使用しています。エラーメッセージが表示されます: Unable to load config: ConfigLoadError(severity: error , bad_element: set, message: error: syntax error)
---
- name: Load merge config
connection: local
gather_facts: no
hosts: juniper
roles:
- Juniper.junos
tasks:
- name: Checking NETCONF connectivity
wait_for: host={{ inventory_hostname }} port=830
- name: Push config
junos_install_config:
host={{ inventory_hostname }}
file=push.conf
replace_config=true
私の設定ファイルにはすべての設定コマンドがあります。