From 6a1e376ca14a8d3806754c10e875fff7cd06688a Mon Sep 17 00:00:00 2001 From: Mathew Taylor Date: Mon, 5 Dec 2011 12:46:09 +0000 Subject: [PATCH] Added new package requirement for psycopg2. --- cookbooks/postgres/recipes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/postgres/recipes/default.rb b/cookbooks/postgres/recipes/default.rb index fef475b..cb2bc58 100644 --- a/cookbooks/postgres/recipes/default.rb +++ b/cookbooks/postgres/recipes/default.rb @@ -1,6 +1,6 @@ # We give away straight off that while this is a postgres recipe, its a # postgres recipe for Python. -%w{postgresql python-psycopg2}.each do |pkg| +%w{libpq-dev postgresql python-psycopg2}.each do |pkg| package pkg do action :install end @@ -111,4 +111,4 @@ end -end \ No newline at end of file +end