vagrant-guest_ansible 0.0.3 → 0.0.4

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: 97d04d81473888eaace0a13b7fe2f2295b76ce14
4
- data.tar.gz: 71b1c73e97f88b1414fdf5150fa2edeab7518343
3
+ metadata.gz: 8b72e4ce61cdc74543807dbebd21fce495bd6e0c
4
+ data.tar.gz: 0a198964c42eb2a7ae4e204c2ee4b2e4ffed8b6e
5
5
  SHA512:
6
- metadata.gz: 997d489f5b7812a41cf833fe2052fd78a3a81f15e3385828be826a324a5984c2f8716d5b97a9788a47c26bd9f49721c11253df89464fed3201f825b525d05e8a
7
- data.tar.gz: 26e6457bd28072b218f762dbbf3f9b6ab4f9bbfcc0a64cf200761ff44c5397e31f99d6e1f78c17b1be766b45fc2bcc837d090a58508a2de27cf23baa2fe6529a
6
+ metadata.gz: 495e6a3512099c26d4147c3e045647213ca0f9784b50cc4f2c79920dde617fecc2c9d0ab5b9cc2425ce2e26eb68a25a6b3551ba87389d9ee85d420135dc10cba
7
+ data.tar.gz: 1091076fabf1a02b8ef9b2eda0f0c30ce6471a471882c018b9c99cdba340428a44f842af4038e63dbe87299489eea5466f7428bb79e039d27b3ba9e6d577f3a4
@@ -1,3 +1,10 @@
1
+ ## 0.0.4
2
+
3
+ BUG FIXES:
4
+
5
+ - Changing wget to curl to pull get-pip script
6
+ - Updating get-pip link to resolve https issue
7
+
1
8
  ## 0.0.3
2
9
 
3
10
  BUG FIXES:
@@ -27,11 +27,10 @@ if ! command -v ansible >/dev/null; then
27
27
  echo "neither yum nor apt-get found!"
28
28
  exit 1
29
29
  fi
30
- echo "Installing pip via easy_install."
31
- wget http://peak.telecommunity.com/dist/ez_setup.py
32
- sudo python ez_setup.py && rm -f ez_setup.py
33
- sudo easy_install pip
34
- # Make sure setuptools are installed crrectly.
30
+ echo "Installing pip via get-pip."
31
+ curl --silent --show-error https://bootstrap.pypa.io/get-pip.py -O
32
+ sudo python get-pip.py && rm -f get-pip.py
33
+ # Make sure setuptools are installed correctly.
35
34
  sudo pip install setuptools --no-use-wheel --upgrade
36
35
  echo "Installing required python modules."
37
36
  sudo pip install paramiko pyyaml jinja2 markupsafe
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module GuestAnsible
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,41 +1,41 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-guest_ansible
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Quintanilla
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-30 00:00:00.000000000 Z
11
+ date: 2018-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.5'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.5'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  description: Ansible provisioner intended to run in the guest machine.
@@ -45,7 +45,7 @@ executables: []
45
45
  extensions: []
46
46
  extra_rdoc_files: []
47
47
  files:
48
- - ".gitignore"
48
+ - .gitignore
49
49
  - CHANGELOG.md
50
50
  - Gemfile
51
51
  - LICENSE.txt
@@ -68,17 +68,17 @@ require_paths:
68
68
  - lib
69
69
  required_ruby_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
- - - ">="
71
+ - - '>='
72
72
  - !ruby/object:Gem::Version
73
73
  version: '0'
74
74
  required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
- - - ">="
76
+ - - '>='
77
77
  - !ruby/object:Gem::Version
78
78
  version: '0'
79
79
  requirements: []
80
80
  rubyforge_project:
81
- rubygems_version: 2.4.5
81
+ rubygems_version: 2.0.14.1
82
82
  signing_key:
83
83
  specification_version: 4
84
84
  summary: Ansible provisioner for guest machine.