From 96c928515edb8c42ec91a716ab71dd042da0233b Mon Sep 17 00:00:00 2001 From: Ben Schwarz Date: Fri, 2 Jan 2009 01:46:34 +1100 Subject: [PATCH] Added a 'post install' task for memcached to call ldconfig to update the paths to libmemached.so2. This enables the 'memcached' gem to install cleanly - A feat in itself. --- config/stack/memcached.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/stack/memcached.rb b/config/stack/memcached.rb index 1a19bd9..1b339fc 100644 --- a/config/stack/memcached.rb +++ b/config/stack/memcached.rb @@ -3,6 +3,7 @@ apt %w( memcached ) post :install, "/etc/init.d/memcached start" + post :install, "sudo ldconfig" verify do has_executable 'memcached'