forked from kaorimatz/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omnios-r151016.json
90 lines (90 loc) · 3.25 KB
/
omnios-r151016.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
{
"builders": [{
"type": "virtualbox-iso",
"guest_os_type": "OpenSolaris_64",
"iso_url": "{{user `mirror`}}/OmniOS_Text_r151016.iso",
"iso_checksum": "5fbd62037120dea29edc58ecddfb15d9e8b1d696",
"iso_checksum_type": "sha1",
"output_directory": "output-omnios-r151016",
"vm_name": "packer-omnios-r151016",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "30s",
"boot_command": [
"<enter><wait10><wait5>",
"<enter><wait10>",
"<f2><wait>",
"<f2><wait>",
"<f2><wait>",
"<bs><bs><bs><bs><bs><bs><bs>omnios<f2><wait>",
"<f2><wait>",
"<f2><wait>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<wait10><wait10><wait10><wait10><wait10><wait10>",
"<f8><wait10><wait10>",
"<enter><wait10><wait10><wait10><wait10><wait10><wait10>",
"root<enter><wait>",
"<enter><wait>",
"passwd<enter><wait>",
"vagrant<enter><wait>",
"vagrant<enter><wait>",
"groupadd vagrant<enter><wait>",
"useradd -b /export/home -g vagrant -m vagrant<enter><wait5>",
"passwd vagrant<enter><wait>",
"vagrant<enter><wait>",
"vagrant<enter><wait>",
"cat <<EOF > /etc/sudoers.d/vagrant<enter>",
"Defaults:vagrant !requiretty<enter>",
"vagrant ALL=(ALL) NOPASSWD: ALL<enter>",
"EOF<enter><wait>",
"chmod 440 /etc/sudoers.d/vagrant<enter><wait>",
"echo 'nameserver 8.8.8.8' > /etc/resolv.conf<enter><wait>",
"cp /etc/nsswitch.dns /etc/nsswitch.conf<enter><wait>",
"ipadm create-addr -T dhcp e1000g0/dhcp<enter><wait>"
],
"ssh_wait_timeout": "60m",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo /usr/sbin/shutdown -i 5 -g 0 -y",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/omnios/virtualbox.sh",
"scripts/common/vagrant.sh",
"scripts/omnios/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "omnios-r151016.box",
"vagrantfile_template": "vagrantfile_templates/omnios.rb"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"memory": "512",
"mirror": "http://omnios.omniti.com/media"
}
}