provisionator 0.0.22 → 0.0.23

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: b295c053b98e78694a7a00255bf549faa41c2043
4
- data.tar.gz: bb3d96b5dcdb5ab0f76bb54c2367e9276ccb6b6f
3
+ metadata.gz: 634aba6c994e9d92ddb2a2253c16b77505e02680
4
+ data.tar.gz: 6e416c8a6cb581d7fdd22ea2dc29134f9a807144
5
5
  SHA512:
6
- metadata.gz: e3c821cf0e12fcdc51d54a6d1ec9429a1d06e7b57c9a7b828dd2f57aa5e8b7b490838cb872c00e89e81505d3fd4ee156b85f94af9e3d718738264acd4e0a15db
7
- data.tar.gz: 60bfa50730e5d5f8d436c91ba2b2b9a5ad6e5b06f83544ade1a33a481aaff291c371d317b01a52318b5dc42037c4aa26586b029304d8a956674a0a2aa232eb65
6
+ metadata.gz: 90a24cbbaff196268dab83e5c64eecfd4310d535de885005b163701414a5cb8fba97b5e51331da19185c6997c671cba679ae74c3eb702baf661fd8d3d527360b
7
+ data.tar.gz: d836b71d6b917bad8d9d3bca8deedaff74d67a79da700a08385d4304e32d1159b715e4509b5f34adab13d6cfc88f65e2de66e0893ea1d052cc1503ed3865d37b
@@ -50,7 +50,7 @@ module Provisionator
50
50
  when 'us-east-1'
51
51
  'ami-bbf799d2'
52
52
  when 'ap-southeast-2'
53
- 'ami-6bcf5c51'
53
+ 'ami-b792008d'
54
54
  else
55
55
  raise "no ami-id defined for region '#{ENV['AWS_REGION']}'"
56
56
  end
@@ -9,7 +9,7 @@ module Provisionator
9
9
  @app_dir = "/home/ubuntu/.#{options[:app_name]}"
10
10
  @chef_dir = "#{@app_dir}/#{options[:chef_dir] || 'provision/chef'}"
11
11
 
12
- options[:ruby_patch] ||= 'p195'
12
+ options[:ruby_patch] ||= 'p247'
13
13
  options[:ebs_mount_paths] = ebs_mount_paths(options[:ebs_volumes]) if options[:ebs_volumes]
14
14
  options[:rails_env] ||= 'production'
15
15
  @options = options
@@ -1,3 +1,3 @@
1
1
  module Provisionator
2
- VERSION = "0.0.22"
2
+ VERSION = "0.0.23"
3
3
  end
@@ -13,7 +13,7 @@ apt-get update
13
13
  apt-get upgrade -y
14
14
  ntpdate ntp.ubuntu.com
15
15
 
16
- RUBY_PATCH=p195
16
+ RUBY_PATCH=p247
17
17
  function install_ruby {
18
18
  apt-get -y install build-essential zlib1g-dev libssl-dev libreadline-dev libyaml-dev libcurl4-openssl-dev
19
19
  cd /tmp
@@ -27,13 +27,7 @@ function install_ruby {
27
27
  ruby -v | grep 2.0.0$RUBY_PATCH || install_ruby
28
28
 
29
29
  function install_chef {
30
- #install ruby 2.0 compatible version of chef
31
- cd /tmp
32
- curl -o chef.tar.gz -L https://api.github.com/repos/opscode/chef/tarball/CHEF-3935
33
- tar -xvzf chef.tar.gz
34
- cd opscode-chef-634ad58
35
- gem build chef.gemspec
36
- gem install chef-11.4.0.gem
30
+ gem install chef
37
31
  gem install ruby-shadow
38
32
  mkdir -p /var/cache/chef
39
33
  chown ubuntu:ubuntu /var/cache/chef
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: provisionator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.22
4
+ version: 0.0.23
5
5
  platform: ruby
6
6
  authors:
7
7
  - cmaitchison
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-21 00:00:00.000000000 Z
11
+ date: 2013-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
111
111
  version: '0'
112
112
  requirements: []
113
113
  rubyforge_project:
114
- rubygems_version: 2.0.2
114
+ rubygems_version: 2.0.3
115
115
  signing_key:
116
116
  specification_version: 4
117
117
  summary: Very higly opinionated Capistrano/Chef/Ubuntu/EC2 deployment tasks