-
Notifications
You must be signed in to change notification settings - Fork 140
/
lineage-hyperv-x64.json
161 lines (161 loc) · 4.73 KB
/
lineage-hyperv-x64.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"variables": {
"box_version": "{{env `VERSION`}}"
},
"provisioners": [
{
"scripts": [
"scripts/ubuntu1604/apt.sh",
"scripts/ubuntu1604/network.sh"
],
"type": "shell",
"timeout": "120m",
"start_retry_timeout": "45m",
"expect_disconnect": "true",
"only": [
"lineage-hyperv-x64"
]
},
{
"scripts": [
"scripts/ubuntu1604/limits.sh",
"scripts/ubuntu1604/floppy.sh",
"scripts/ubuntu1604/vagrant.sh",
"scripts/ubuntu1604/profile.sh",
"scripts/ubuntu1604/motd.sh",
"scripts/ubuntu1604/fixtty.sh",
"scripts/ubuntu1604/virtualbox.sh",
"scripts/ubuntu1604/parallels.sh",
"scripts/ubuntu1604/vmware.sh",
"scripts/ubuntu1604/qemu.sh",
"scripts/ubuntu1604/cleanup.sh"
],
"type": "shell",
"timeout": "120m",
"pause_before": "120s",
"start_retry_timeout": "45m",
"expect_disconnect": "true",
"only": [
"lineage-hyperv-x64"
]
},
{
"scripts": [
"scripts/ubuntu1604/lineage.sh"
],
"type": "shell",
"timeout": "120m",
"start_retry_timeout": "45m",
"expect_disconnect": "true",
"only": [
"lineage-hyperv-x64"
]
},
{
"scripts": [
"scripts/common/keys.sh",
"scripts/common/machine.sh",
"scripts/common/leases.sh",
"scripts/common/localtime.sh",
"scripts/common/zerodisk.sh",
"scripts/common/lockout.sh"
],
"type": "shell",
"timeout": "120m",
"start_retry_timeout": "45m",
"expect_disconnect": "true",
"except": []
}
],
"builders": [
{
"type": "hyperv-iso",
"name": "lineage-hyperv-x64",
"vm_name": "lineage-hyperv-x64",
"temp_path": "output/",
"output_directory": "output/lineage-hyperv-x64",
"boot_wait": "20s",
"boot_keygroup_interval": "1s",
"boot_command": [
"<enter><wait>",
"<f6><esc>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
"<bs><bs><bs>",
"/install/vmlinuz ",
"initrd=/install/initrd.gz ",
"fb=false auto-install/enable=true debconf/priority=critical debconf/frontend=noninteractive ",
"ipv6.disable_ipv6=1 net.ifnames=0 biosdevname=0 preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/lineage.ubuntu1604.vagrant.cfg --- <wait><enter>"
],
"disk_size": 412317,
"memory": 2048,
"cpus": 4,
"http_directory": "http",
"iso_url": "https://mirrors.edge.kernel.org/ubuntu-releases/16.04.7/ubuntu-16.04.7-server-amd64.iso",
"iso_checksum": "sha256:b23488689e16cad7a269eb2d3a3bf725d3457ee6b0868e00c8762d3816e25848",
"ssh_username": "root",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_handshake_attempts": 1000,
"ssh_timeout": "7200s",
"shutdown_command": "echo 'vagrant' | sudo -S shutdown -P now",
"generation": 1,
"headless": true,
"communicator": "ssh",
"skip_compaction": false,
"enable_secure_boot": false,
"enable_mac_spoofing": true,
"enable_dynamic_memory": false,
"guest_additions_mode": "disable",
"enable_virtualization_extensions": false
}
],
"post-processors": [
[
{
"type": "vagrant",
"compression_level": 9,
"keep_input_artifact": false,
"vagrantfile_template": "tpl/lineage.rb",
"output": "output/{{build_name}}-{{user `box_version`}}.box",
"include": [
"tpl/lineage/info.json"
]
},
{
"type": "checksum",
"checksum_types": [
"sha256"
],
"keep_input_artifact": false,
"output": "output/{{build_name}}-{{user `box_version`}}.box.sha256"
}
],
[
{
"type": "vagrant",
"compression_level": 9,
"keep_input_artifact": false,
"vagrantfile_template": "tpl/lineageos.rb",
"output": "output/{{ replace_all \"lineage\" \"lineageos\" build_name }}-{{user `box_version`}}.box",
"include": [
"tpl/lineage/info.json"
]
},
{
"type": "checksum",
"checksum_types": [
"sha256"
],
"keep_input_artifact": false,
"output": "output/{{ replace_all \"lineage\" \"lineageos\" build_name }}-{{user `box_version`}}.box.sha256"
}
]
]
}