package "libxml2-dev"
package "libmemcached-dev"
package "libboost-regex-dev"
+package "libboost-system-dev"
package "libboost-program-options-dev"
package "libboost-date-time-dev"
package "libpqxx3-dev"
execute "cgimap-configure" do
action :nothing
- command "./configure --with-fcgi=/usr --with-boost-libdir=/usr/lib"
+ command "./configure --with-fcgi=/usr --with-boost-libdir=/usr/lib/x86_64-linux-gnu"
cwd cgimap_directory
user "rails"
group "rails"
- notifies :run, resources(:execute => "cgimap-build"), :immediate
+ notifies :run, "execute[cgimap-build]", :immediate
end
execute "cgimap-autogen" do
cwd cgimap_directory
user "rails"
group "rails"
- notifies :run, resources(:execute => "cgimap-configure"), :immediate
+ notifies :run, "execute[cgimap-configure]", :immediate
end
git cgimap_directory do
revision "live"
user "rails"
group "rails"
- notifies :run, resources(:execute => "cgimap-autogen"), :immediate
+ notifies :run, "execute[cgimap-autogen]", :immediate
end
if node[:web][:readonly_database_host]
service "cgimap" do
action [ :enable, :start ]
supports :restart => true, :reload => true
- subscribes :restart, resources(:execute => "cgimap-build")
- subscribes :restart, resources(:file => "/etc/init.d/cgimap")
+ subscribes :restart, "execute[cgimap-build]"
+ subscribes :restart, "file[/etc/init.d/cgimap]"
end
end