boxes 3.1.0 → 3.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/boxes/version.rb +1 -1
- data/templates/ubuntu/bionic64.erb +64 -0
- data/templates/ubuntu/preseed.cfg +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67b9d481635c016e0632d1abb8eeb9f324dff69a
|
4
|
+
data.tar.gz: 9a7e61f7914431b70e57bf27f66639fb64700e67
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0393616cb0ca69bf7845ef067af842c553cbfca6bdfa534007afd12d9f4ab43859aadb8e68f5613e847470e41d09818d2d33983e16171451c92de364bd21b5eb'
|
7
|
+
data.tar.gz: 07cc8216261cdc17e3f21b24bd3f9c001540f4178ea937019e7da855f22005854785eec935cf99974f34e1232ccc5719bf8798e207b7a95df51033313adff396
|
data/CHANGELOG.md
CHANGED
data/lib/boxes/version.rb
CHANGED
@@ -0,0 +1,64 @@
|
|
1
|
+
{
|
2
|
+
"provisioners": [
|
3
|
+
{
|
4
|
+
"type": "shell",
|
5
|
+
"scripts": [
|
6
|
+
"scripts/postinstall.sh",
|
7
|
+
"scripts/vmtools.sh",
|
8
|
+
<%- @scripts.each do |script| -%>
|
9
|
+
"scripts/<%= script %>",
|
10
|
+
<%- end -%>
|
11
|
+
"scripts/purge.sh"
|
12
|
+
],
|
13
|
+
"execute_command": "echo 'vagrant' | {{ .Vars }} sudo -E -S bash '{{ .Path }}'"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
|
17
|
+
"builders": [
|
18
|
+
{
|
19
|
+
"name": "<%= @name %>",
|
20
|
+
"type": "<%= @provider %>-iso",
|
21
|
+
<%- if @provider == "vmware" -%>
|
22
|
+
"guest_os_type": "ubuntu-64",
|
23
|
+
"tools_upload_flavor": "linux",
|
24
|
+
<%- else -%>
|
25
|
+
"guest_os_type": "Ubuntu_64",
|
26
|
+
<%- end -%>
|
27
|
+
"headless": true,
|
28
|
+
|
29
|
+
"iso_url": "http://cdimage.ubuntu.com/ubuntu/releases/bionic/release/ubuntu-18.04-server-amd64.iso",
|
30
|
+
"iso_checksum": "a7f5c7b0cdd0e9560d78f1e47660e066353bb8a79eb78d1fc3f4ea62a07e6cbc",
|
31
|
+
"iso_checksum_type": "sha256",
|
32
|
+
|
33
|
+
"ssh_username": "vagrant",
|
34
|
+
"ssh_password": "vagrant",
|
35
|
+
"ssh_timeout": "15m",
|
36
|
+
|
37
|
+
"http_directory": "templates/ubuntu",
|
38
|
+
|
39
|
+
"boot_command": [
|
40
|
+
"<enter><wait><f6><esc><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
|
41
|
+
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
|
42
|
+
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
|
43
|
+
"<bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs><bs>",
|
44
|
+
"/install/vmlinuz noapic ",
|
45
|
+
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
|
46
|
+
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
|
47
|
+
"hostname={{ .Name }} ",
|
48
|
+
"fb=false debconf/frontend=noninteractive ",
|
49
|
+
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
|
50
|
+
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
|
51
|
+
"grub-installer/bootdev=/dev/sda ",
|
52
|
+
"initrd=/install/initrd.gz -- <enter>"
|
53
|
+
],
|
54
|
+
|
55
|
+
"shutdown_command": "echo 'shutdown -P now' > shutdown.sh; echo 'vagrant'|sudo -S sh 'shutdown.sh'"
|
56
|
+
}
|
57
|
+
],
|
58
|
+
|
59
|
+
"post-processors": [
|
60
|
+
{
|
61
|
+
"type": "vagrant"
|
62
|
+
}
|
63
|
+
]
|
64
|
+
}
|
@@ -49,7 +49,7 @@ d-i user-setup/encrypt-home boolean false
|
|
49
49
|
# packages
|
50
50
|
tasksel tasksel/first multiselect standard, ubuntu-server
|
51
51
|
d-i pkgsel/install-language-support boolean false
|
52
|
-
d-i pkgsel/include string openssh-server nfs-common curl git-core
|
52
|
+
d-i pkgsel/include string openssh-server nfs-common curl git-core python
|
53
53
|
d-i pkgsel/upgrade select full-upgrade
|
54
54
|
d-i pkgsel/update-policy select none
|
55
55
|
postfix postfix/main_mailer_type select No configuration
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: boxes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Charlton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-04-
|
11
|
+
date: 2018-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: claide
|
@@ -197,6 +197,7 @@ files:
|
|
197
197
|
- templates/debian/preseed.cfg
|
198
198
|
- templates/debian/stretch64.erb
|
199
199
|
- templates/debian/wheezy64.erb
|
200
|
+
- templates/ubuntu/bionic64.erb
|
200
201
|
- templates/ubuntu/precise64.erb
|
201
202
|
- templates/ubuntu/preseed.cfg
|
202
203
|
- templates/ubuntu/trusty64.erb
|