Chore: Clean up mininet-ovs-2.5 12/102212/1
authorAnil Belur <abelur@linuxfoundation.org>
Wed, 24 Aug 2022 22:34:55 +0000 (08:34 +1000)
committerAnil Belur <abelur@linuxfoundation.org>
Wed, 24 Aug 2022 22:34:55 +0000 (08:34 +1000)
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 <abelur@linuxfoundation.org>
packer/provision/mininet-ovs-2.5.yaml [deleted file]

diff --git a/packer/provision/mininet-ovs-2.5.yaml b/packer/provision/mininet-ovs-2.5.yaml
deleted file mode 100644 (file)
index 53366c7..0000000
+++ /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