dust-deploy 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,12 @@
1
1
  Changelog
2
2
  =============
3
3
 
4
+ 0.7.2
5
+ ------------
6
+
7
+ - fixes small bug in postgres recipe
8
+
9
+
4
10
  0.7.1
5
11
  ------------
6
12
 
@@ -100,7 +100,7 @@ class Postgres < Recipe
100
100
  @node.collect_facts :quiet => true
101
101
 
102
102
  # get pagesize
103
- pagesize = @node.exec('getconf PAGESIZE')[:stdout] || 4096
103
+ pagesize = @node.exec('getconf PAGESIZE')[:stdout].to_i || 4096
104
104
 
105
105
  # use half of system memory for shmmax
106
106
  shmmax = ::Dust.convert_size(@node['memorysize']) * 1024 / 2
@@ -1,3 +1,3 @@
1
1
  module Dust
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 7
8
- - 1
9
- version: 0.7.1
8
+ - 2
9
+ version: 0.7.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - kris kechagia