Merge "Configure clustering on a list of controllers."
[releng/builder.git] / jenkins-scripts / ubuntu-docker-ovs.sh
1 #!/bin/bash
2
3 # Do the final install of OVS that the has to be done at boot time for
4 # some reason due to how the snapshots keep behaving.
5 dpkg --install /root/openvswitch-datapath-dkms* && \
6 dpkg --install /root/openvswitch-{common,switch}*
7
8 # add user jenkins to docker group
9 /usr/sbin/usermod -a -G docker jenkins
10
11 # pull docker images
12 docker pull alagalah/odlpoc_ovs230
13
14 # vim: sw=2 ts=2 sts=2 et :
15