-
Notifications
You must be signed in to change notification settings - Fork 2
/
workshop.json
36 lines (36 loc) · 988 Bytes
/
workshop.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"workshop": {
"schema": {
"version": "2020.03.02"
}
},
"userenvs": [
{
"name": "default",
"requirements": [ "ovs_src" ]
}
],
"requirements": [
{
"name": "ovs_src",
"type": "source",
"source_info": {
"url": "https://www.openvswitch.org/releases/openvswitch-3.3.0.tar.gz",
"filename": "ovs.tar.gz",
"commands": {
"unpack": "tar xf ovs.tar.gz",
"get_dir": "tar tf ovs.tar.gz | head -n 1",
"commands": [
"./boot.sh",
"./configure",
"make -j16",
"make install-binPROGRAMS",
"ldconfig",
"make clean",
"rm -rf *"
]
}
}
}
]
}