boxes 2.0.1 → 2.0.2

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: 21f9035ac63ddde3b0f4047daea626938707f069
4
- data.tar.gz: eb5627ca8691516ac99e75bfefeff349dbea3621
3
+ metadata.gz: 770490ef960a34e01bb3d8f96c6a7955a9560e66
4
+ data.tar.gz: 02b6e1b2ac15aed50018809105837780877f9dac
5
5
  SHA512:
6
- metadata.gz: fa21b325ea2836d338f2726e8f9ce58d74ece10d782a23e28bafde222b5778cd11f47339d644de4b5e5183940fe7c19541c60d3b093b41674964af2a401e51dd
7
- data.tar.gz: c3acba77025458ccbeaaddc9ea5a33f5eff8663cf1c0da8171cb7a67b5c34a5d51db0a364f3ea7d2a8e845b7013b75f813ede24467c045d47b5be51751bdd158
6
+ metadata.gz: 856fa3360e4743392f4bd15ab310ab7e2aba082d64a2dfaa667f6bde49f9285c99a10b9d5dc8934dce2add95a5a3b49e4f7eea5c0a7f49d869368910aae69fab
7
+ data.tar.gz: ccf460ff64e4621cdef3caff21a77303510378b322150be01e98ada727d24c333450fe669eadd3de36f8196bfb85bfc0b97dd341063e6b69cc3325d200794d1b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 2.0.2 (08/11/2015)
4
+
5
+ * Switches to `open-vm-tools` for VMWare ([20][]).
6
+ * Increases the SSH timeout to 15m. ([25][]).
7
+
3
8
  ## 2.0.1 (18/10/2015)
4
9
 
5
10
  * Fixes a launch exception relating to configuration.
@@ -14,3 +19,6 @@
14
19
  * Maintains an environment for running builds.
15
20
  * Parses, validates and combines arguments.
16
21
  * Allows the building of all of the previous styles of boxes.
22
+
23
+ [20]: https://github.com/nickcharlton/boxes/issues/20
24
+ [25]: https://github.com/nickcharlton/boxes/issues/25
data/lib/boxes/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # Versions and other declarations.
2
2
  module Boxes
3
- VERSION = '2.0.1'
3
+ VERSION = '2.0.2'
4
4
  end
data/scripts/vmtools.sh CHANGED
@@ -11,20 +11,13 @@ case $PACKER_BUILDER_TYPE in
11
11
  mount -o loop /home/vagrant/VBoxGuestAdditions.iso /mnt
12
12
  sh /mnt/VBoxLinuxAdditions.run
13
13
  umount /mnt
14
-
14
+
15
15
  rm -f /home/vagrant/VBoxGuestAdditions.iso
16
16
  ;;
17
17
  'vmware-iso')
18
18
  echo "Installing VMware Tools..."
19
- mkdir -p /mnt/cdrom
20
- mount -o loop /home/vagrant/linux.iso /mnt/cdrom
21
-
22
- cd /tmp
23
- tar -zxpf /mnt/cdrom/VMwareTools-*.tar.gz -C /tmp/
24
- /tmp/vmware-tools-distrib/vmware-install.pl -d
25
19
 
26
- umount /mnt/cdrom
27
- rm -f /home/vagrant/linux.iso
20
+ apt-get -qy install open-vm-tools
28
21
  ;;
29
22
  *)
30
23
  printf "Nothing to do for the %s builder type.\n" $PACKER_BUILDER_TYPE
@@ -31,6 +31,7 @@
31
31
 
32
32
  "ssh_username": "vagrant",
33
33
  "ssh_password": "vagrant",
34
+ "ssh_timeout": "15m",
34
35
 
35
36
  "http_directory": "templates/debian",
36
37
 
@@ -32,6 +32,7 @@
32
32
 
33
33
  "ssh_username": "vagrant",
34
34
  "ssh_password": "vagrant",
35
+ "ssh_timeout": "15m",
35
36
 
36
37
  "http_directory": "templates/ubuntu",
37
38
 
@@ -32,6 +32,7 @@
32
32
 
33
33
  "ssh_username": "vagrant",
34
34
  "ssh_password": "vagrant",
35
+ "ssh_timeout": "15m",
35
36
 
36
37
  "http_directory": "templates/ubuntu",
37
38
 
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.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Charlton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-18 00:00:00.000000000 Z
11
+ date: 2015-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: claide