dust-deploy 0.7.1 → 0.7.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.
- data/changelog.md +6 -0
- data/lib/dust/recipes/postgres.rb +1 -1
- data/lib/dust/version.rb +1 -1
- metadata +2 -2
data/changelog.md
CHANGED
|
@@ -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
|
data/lib/dust/version.rb
CHANGED