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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 16bfa8027f2bc618fbd56cdd5f5179357146eebb
4
- data.tar.gz: f63c43ebc5f2c880851357349b6871aad61ae6ac
3
+ metadata.gz: 818d14b933aac59fa31bb6e85e9c5a97d49cb3b2
4
+ data.tar.gz: a899117bff04a71863ad47a187438bd9a4a426bc
5
5
  SHA512:
6
- metadata.gz: 33e6182b76f068440732f211910622b6284e039df3ea9fd9bfbd10aba121e85b47baf5d51b03429add12baef45076f4fc1c3672b5bbd1959bdd8fcce9f740f36
7
- data.tar.gz: 63d53e514aa99fbdd31a6a0bd61fcb16b83006256e3dda7de8c60f93380c5287cb495360109be331e46ba8e188f0a638099c03c79303c85aaef7b194c8baf756
6
+ metadata.gz: bce42ebce8bf51150695c2b04d56e8037f123161181677e2d9a19186a5a746913c46965747c4d2b9147b3fe706f8df6143edddd21071b71b4c70610e315a5d78
7
+ data.tar.gz: ea69c2b57dc06455dbcffb816ceb7223dd42a6e329b3873014d8d8944c3edb1390f4f569ada26a25d8c628819c779db4fdf68cbeed379a2b733eed3353c56849
data/CHANGELOG.md CHANGED
@@ -1,6 +1,19 @@
1
1
  # CHANGELOG
2
2
 
3
- ## 2.1.0 (15/02/2015)
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
@@ -1,4 +1,4 @@
1
1
  # Versions and other declarations.
2
2
  module Boxes
3
- VERSION = '2.1.1'
3
+ VERSION = "2.2.0"
4
4
  end
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'
@@ -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.3.0/amd64/iso-cd/debian-8.3.0-amd64-netinst.iso",
29
- "iso_checksum": "dd25bcdde3c6ea5703cc0f313cde621b13d42ff7d252e2538a11663c93bf8654",
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/trusty/ubuntu-14.04.3-server-amd64.iso",
30
- "iso_checksum": "9e5fecc94b3925bededed0fdca1bd417",
31
- "iso_checksum_type": "md5",
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.1.1
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-03-02 00:00:00.000000000 Z
11
+ date: 2016-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: claide