| --- |
| # Copyright 2017-present Open Networking Foundation |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| - name: Verify Openflow Agent |
| shell: which ofagentapp | wc -w |
| register: ofdpa_exists |
| tags: |
| - skip_ansible_lint # We're just gathering info |
| |
| - name: Install OFDPA for Accton switches |
| include: ofdpa-accton.yml |
| when: |
| - platform in platforms.accton_switches.names |
| - ofdpa_exists.stdout == "0" |
| |
| - name: Install OFDPA for Quanta switches |
| include: ofdpa-quanta.yml |
| when: |
| - platform in platforms.quanta_switches.names |
| - ofdpa_exists.stdout == "0" |
| |
| - name: Generate DPID |
| shell: ifconfig | grep HWaddr | head -1 | awk '{ print "0x0000"$5 }' | sed s/://g |
| register: dpid |
| tags: |
| - skip_ansible_lint # We're just gathering info |
| |
| - name: Ensure OFDPA Config |
| set_fact: |
| switch_id: "{{ dpid.stdout }}" |
| controller_ip: "onos-fabric" |
| |
| - name: Utilities Scripts |
| template: |
| src: "{{ item }}" |
| dest: /root |
| owner: root |
| group: root |
| mode: "0755" |
| with_items: |
| - killit |
| - connect |