From: Anil Belur Date: Wed, 24 Aug 2022 22:34:55 +0000 (+1000) Subject: Chore: Clean up mininet-ovs-2.5 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=8c80cde3bfc753b6591cbc5065806ea0aa5842b1;hp=00c0e449dcc617f4f4291ea413ca8f329579c37e;p=releng%2Fbuilder.git Chore: Clean up mininet-ovs-2.5 mininet and ovs 25 was only used with 16.04 and no longer being packaged with any of the Ubuntu builders or CSIT jobs. Change-Id: I055df5856c705b7d6816935d8b5f9b6b838eb4fe Signed-off-by: Anil Belur --- diff --git a/packer/provision/mininet-ovs-2.5.yaml b/packer/provision/mininet-ovs-2.5.yaml deleted file mode 100644 index 53366c7ee..000000000 --- a/packer/provision/mininet-ovs-2.5.yaml +++ /dev/null @@ -1,71 +0,0 @@ ---- -- import_playbook: ../common-packer/provision/baseline.yaml - -- hosts: all - become_user: root - become_method: sudo - - pre_tasks: - - include_role: name=lfit.system-update - - tasks: - - name: "Install OpenVSwitch {{ovs_version}}" - block: - - name: "Install dependencies required for OpenVSwitch {{ovs_version}}" - apt: - name: - - dh-autoreconf - - debhelper - - autoconf - - automake - - libssl-dev - - pkg-config - - bzip2 - - openssl - - python-all - - procps - - python-qt4 - - python-zopeinterface - - python-twisted-conch - state: present - become: true - - name: "Install OpenVSwitch {{ovs_version}}" - apt: - name: - - openvswitch-switch - - openvswitch-vtep - state: present - become: true - - name: Enable openvswitch-switch service - systemd: - name: openvswitch-switch - enabled: true - masked: false - become: true - - name: Enable openvswitch-vtep service - systemd: - name: openvswitch-vtep - enabled: true - masked: false - become: true - - - name: Install Mininet - apt: name=mininet state=present - become: true - - - name: Install exabgp - apt: name=exabgp state=present - become: true - - - name: Install vlan for vlan based tests in VTN suites - apt: name=vlan state=present - become: true - - - name: Install python-netaddr for custom mininet topologies - apt: name=python-netaddr state=present - become: true - - post_tasks: - - name: System Reseal - script: ../common-packer/provision/system-reseal.sh - become: true