magic_recipes 0.1.7 → 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/magic_recipes/postgresql.rb +1 -1
- metadata +1 -1
@@ -51,7 +51,7 @@ module MagicRecipes
|
|
51
51
|
task :install, roles: :db, only: {primary: true} do
|
52
52
|
run "#{sudo} wget --quiet -O - http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc | sudo apt-key add -"
|
53
53
|
run "#{sudo} apt-get -y update"
|
54
|
-
run "#{sudo} apt-get -y install postgresql"
|
54
|
+
run "#{sudo} apt-get -y install postgresql libpq-dev"
|
55
55
|
# add constrib for hstore extension
|
56
56
|
run "#{sudo} apt-get -y install postgresql-contrib"
|
57
57
|
end
|