forked from mechboxes/mech
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Mechfile
94 lines (94 loc) · 2.33 KB
/
Mechfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"fifth": {
"box": "StefanScherer/windows_10",
"box_version": "2020.02.12",
"name": "fifth",
"provider": "vmware",
"windows": "True",
"provision": [
{
"destination": "file1.txt",
"source": "file1.txt",
"type": "file"
},
{
"inline": "echo hello from inline > inline_test.out",
"type": "ps"
},
{
"path": "file3.ps",
"type": "ps"
}
],
"shared_folders": [
{
"host_path": ".",
"share_name": "mech"
}
],
"url": "https://vagrantcloud.com/StefanScherer/boxes/windows_10/versions/2020.02.12/providers/vmware_desktop.box"
},
"first": {
"box": "mrlesmithjr/alpine311",
"box_version": "1578437753",
"name": "first",
"provision": [
{
"destination": "/tmp/file1.txt",
"source": "file1.txt",
"type": "file"
},
{
"destination": "/tmp/file2.txt",
"source": "file2.txt",
"type": "file"
}
],
"url": "https://vagrantcloud.com/mrlesmithjr/boxes/alpine311/versions/1578437753/providers/vmware_desktop.box"
},
"fourth": {
"box": "mrlesmithjr/alpine311",
"box_version": "1578437753",
"name": "fourth",
"provision": [
{
"args": [],
"path": "https://raw.githubusercontent.com/Fizzadar/pyinfra/master/examples/apk.py",
"type": "pyinfra"
}
],
"url": "https://vagrantcloud.com/mrlesmithjr/boxes/alpine311/versions/1578437753/providers/vmware_desktop.box"
},
"second": {
"box": "mrlesmithjr/alpine311",
"box_version": "1578437753",
"name": "second",
"provision": [
{
"args": [
"a=1",
"b=true"
],
"path": "file1.sh",
"type": "shell"
},
{
"args": [],
"path": "file2.sh",
"type": "shell"
},
{
"inline": "echo hello from inline > /tmp/inline_test.out",
"type": "shell"
}
],
"url": "https://vagrantcloud.com/mrlesmithjr/boxes/alpine311/versions/1578437753/providers/vmware_desktop.box"
},
"third": {
"box": "mrlesmithjr/alpine311",
"box_version": "1578437753",
"name": "third",
"provision": [],
"url": "https://vagrantcloud.com/mrlesmithjr/boxes/alpine311/versions/1578437753/providers/vmware_desktop.box"
}
}