-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathkali.json
49 lines (49 loc) · 1.55 KB
/
kali.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
{
"provisioners": [
{
"type": "shell",
"execute_command": "sudo -S sh '{{.Path}}'",
"scripts": [
"scripts/base.sh",
"scripts/vm.sh",
"scripts/user.sh"
],
"expect_disconnect": true
}
],
"builders": [
{
"type": "vmware-iso",
"boot_command": [
"<esc><wait>",
"install preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg debian-installer=en_US auto locale=en_US kbd-chooser/method=us <wait>",
"netcfg/get_hostname={{ .Name }} netcfg/get_domain=local fb=false debconf/frontend=noninteractive console-setup/ask_detect=false <wait>",
"console-keymaps-at/keymap=us keyboard-configuration/xkb-keymap=us <wait>",
"<enter><wait>"
],
"boot_wait": "10s",
"disk_size": 20480,
"guest_os_type": "ubuntu-64",
"headless": true,
"http_directory": "http",
"iso_urls": [
"http://cdimage.kali.org/kali-2017.2/kali-linux-2017.2-amd64.iso"
],
"iso_checksum_type": "sha256",
"iso_checksum": "4556775bfb981ae64a3cb19aa0b73e8dcac6e4ba524f31c4bc14c9137b99725d",
"output_directory": "kali-linux-rolling-base",
"shutdown_command": "sudo shutdown -P now",
"ssh_username": "otto",
"ssh_password": "OttoSuperSecureTemp!",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"tools_upload_flavor": "linux",
"vm_name": "kali-linux-rolling-base",
"vmx_data": {
"cupid.coresPerSocket": "1",
"memsize": "1024",
"numvcpus": "1"
}
}
]
}