From b1256ab6e9379bb24d840b30ccd9e6df20fe6740 Mon Sep 17 00:00:00 2001 From: Taybin Rutkin Date: Tue, 31 Mar 2009 07:35:26 +0800 Subject: [PATCH] add site.yml support to deploy.rb-example Signed-off-by: Reinier Balt --- config/deploy.rb-example | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/deploy.rb-example b/config/deploy.rb-example index 77c7475f..8358add8 100644 --- a/config/deploy.rb-example +++ b/config/deploy.rb-example @@ -51,6 +51,7 @@ namespace :deploy do task :before_symlink do run "rm #{release_path}/public/.htaccess" #not compatible with Passenger run "ln -s #{shared_path}/config/database.yml #{release_path}/config/database.yml" + run "ln -s #{shared_path}/config/site.yml #{release_path}/config/site.yml" run "ln -s #{shared_path}/config/environment.rb #{release_path}/config/environment.rb" end @@ -98,4 +99,4 @@ namespace :db do remote_db_download remote_db_cleanup end -end \ No newline at end of file +end