Use new verify job type with new freestyle project
[releng/builder.git] / vagrant / basic-mininet-fedora-node / bootstrap.sh
1 #!/bin/bash
2
3 # vim: sw=4 ts=4 sts=4 et tw=72 :
4
5 # update os
6 yum clean all
7 yum update -q -y
8
9 # install openvswitch
10 yum install -q -y openvswitch
11 # make sure it's enabled on system start, no need to start it
12 # during setup
13 systemctl enable openvswitch
14
15 # install mininet
16 git clone git://github.com/mininet/mininet
17 cd mininet
18 git checkout -b 2.2.1 2.2.1
19 cd ..
20 mininet/util/install.sh -nf
21