Minimize CSIT dependencis in mininet-ovs-2.8 image
[releng/builder.git] / packer / provision / mininet-ovs-2.8.yaml
index 06dc8c011a323c4a7babdbfd809357dfc45962b2..07557adafffa807ba5a37bfd6f7583518c3bac5b 100644 (file)
       apt: name=vlan state=present
       become: true
 
+    # This image is being used as a CSIT tools image and some of our
+    # CSIT test scripts are relying on python-2 and its request library.
+    # This makes sure we install them onto the image even though they
+    # are not required for the OVS rule of it.
     - name: Install CSIT dependencies
       apt:
         name:
-          - git-review
-          - python-chardet
-          - python-ndg-httpsclient
           - python-requests
-          - python-urllib3
         state: present
       become: true