boxes 2.1.1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -1
- data/lib/boxes/version.rb +1 -1
- data/scripts/chef.sh +1 -1
- data/scripts/postinstall.sh +0 -1
- data/templates/debian/jessie64.erb +2 -2
- data/templates/debian/preseed.cfg +1 -1
- data/templates/ubuntu/trusty64.erb +3 -3
- data/templates/ubuntu/vivid64.erb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 818d14b933aac59fa31bb6e85e9c5a97d49cb3b2
|
|
4
|
+
data.tar.gz: a899117bff04a71863ad47a187438bd9a4a426bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bce42ebce8bf51150695c2b04d56e8037f123161181677e2d9a19186a5a746913c46965747c4d2b9147b3fe706f8df6143edddd21071b71b4c70610e315a5d78
|
|
7
|
+
data.tar.gz: ea69c2b57dc06455dbcffb816ceb7223dd42a6e329b3873014d8d8944c3edb1390f4f569ada26a25d8c628819c779db4fdf68cbeed379a2b733eed3353c56849
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
## 2.
|
|
3
|
+
## 2.2.0 (10/05/2016)
|
|
4
|
+
|
|
5
|
+
* Update the Trusty ISO image to a working kernel.
|
|
6
|
+
* Update the Jessie ISO image.
|
|
7
|
+
* Allow fetching the Chef deb insecurely (this breaks on Debian).
|
|
8
|
+
* Add the `ca-certificates` package to the Debian preseed.
|
|
9
|
+
* Fixes reasonably consistent shutdown failures.
|
|
10
|
+
* Remove ruby from the default packages in `postinstall.sh`.
|
|
11
|
+
|
|
12
|
+
## 2.1.1 (02/03/2016)
|
|
13
|
+
|
|
14
|
+
* Fixes broken Jessie ISO urls.
|
|
15
|
+
|
|
16
|
+
## 2.1.0 (15/02/2016)
|
|
4
17
|
|
|
5
18
|
* Adds support for Debian Jessie (@kirjatoukka).
|
|
6
19
|
* Adds support for Ubuntu Vivid (15.04) and Wily (15.10).
|
data/lib/boxes/version.rb
CHANGED
data/scripts/chef.sh
CHANGED
|
@@ -10,7 +10,7 @@ version_url=$(echo "$current_version" | awk '/url/{print $2}')
|
|
|
10
10
|
version_sha=$(echo "$current_version" | awk '/sha256/{print $2}')
|
|
11
11
|
|
|
12
12
|
# fetch chef
|
|
13
|
-
curl $version_url -o chef.deb
|
|
13
|
+
curl --insecure --location $version_url -o chef.deb
|
|
14
14
|
|
|
15
15
|
# check the file
|
|
16
16
|
echo "$version_sha chef.deb" > '/tmp/chef-checksum'
|
data/scripts/postinstall.sh
CHANGED
|
@@ -21,7 +21,6 @@ apt-get -qy upgrade
|
|
|
21
21
|
apt-get -qy install linux-headers-$(uname -r) build-essential
|
|
22
22
|
apt-get -qy install zlib1g-dev libssl-dev
|
|
23
23
|
apt-get -qy install python-software-properties python-setuptools python-dev
|
|
24
|
-
apt-get -qy install ruby1.9.3
|
|
25
24
|
|
|
26
25
|
# configure password-less sudo
|
|
27
26
|
usermod -a -G sudo vagrant
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
<%- end -%>
|
|
26
26
|
"headless": true,
|
|
27
27
|
|
|
28
|
-
"iso_url": "http://cdimage.debian.org/debian-cd/8.
|
|
29
|
-
"iso_checksum": "
|
|
28
|
+
"iso_url": "http://cdimage.debian.org/debian-cd/8.4.0/amd64/iso-cd/debian-8.4.0-amd64-netinst.iso",
|
|
29
|
+
"iso_checksum": "7a6b418e6a4ee3ca75dda04d79ed96c9e2c33bb0c703ca7e40c6374ab4590748",
|
|
30
30
|
"iso_checksum_type": "sha256",
|
|
31
31
|
|
|
32
32
|
"ssh_username": "vagrant",
|
|
@@ -49,7 +49,7 @@ d-i user-setup/encrypt-home boolean false
|
|
|
49
49
|
# packages
|
|
50
50
|
tasksel tasksel/first multiselect standard
|
|
51
51
|
#d-i pkgsel/install-language-support boolean false
|
|
52
|
-
d-i pkgsel/include string openssh-server nfs-common curl ntp acpid sudo bzip2 rsync git
|
|
52
|
+
d-i pkgsel/include string openssh-server nfs-common curl ntp acpid sudo bzip2 rsync git ca-certificates
|
|
53
53
|
d-i pkgsel/upgrade select full-upgrade
|
|
54
54
|
d-i pkgsel/update-policy select none
|
|
55
55
|
d-i popularity-contest/participate boolean false
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
<%- end -%>
|
|
27
27
|
"headless": true,
|
|
28
28
|
|
|
29
|
-
"iso_url": "http://releases.ubuntu.com/
|
|
30
|
-
"iso_checksum": "
|
|
31
|
-
"iso_checksum_type": "
|
|
29
|
+
"iso_url": "http://old-releases.ubuntu.com/releases/14.04.3/ubuntu-14.04.3-server-amd64.iso",
|
|
30
|
+
"iso_checksum": "a3b345908a826e262f4ea1afeb357fd09ec0558cf34e6c9112cead4bb55ccdfb",
|
|
31
|
+
"iso_checksum_type": "sha256",
|
|
32
32
|
|
|
33
33
|
"ssh_username": "vagrant",
|
|
34
34
|
"ssh_password": "vagrant",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"initrd=/install/initrd.gz -- <enter>"
|
|
50
50
|
],
|
|
51
51
|
|
|
52
|
-
"shutdown_command": "echo 'shutdown -P now' > shutdown.sh; echo 'vagrant'|sudo -S sh 'shutdown.sh'"
|
|
52
|
+
"shutdown_command": "echo '/sbin/shutdown -h -P now' > /tmp/shutdown.sh; echo 'vagrant'|sudo -S sh '/tmp/shutdown.sh'"
|
|
53
53
|
}
|
|
54
54
|
],
|
|
55
55
|
|
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: 2.
|
|
4
|
+
version: 2.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: 2016-
|
|
11
|
+
date: 2016-05-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: claide
|