Fixed cap deploy file for Passenger; added migration to create an admin user
[depot.git] / config / deploy.rb
index 1c6433a6739d69cb37195f4ab914b43865b0148f..7fd175900056da4d4f035d5022f77dfbf54fbcdb 100644 (file)
@@ -38,20 +38,37 @@ end
 #  end
 #end
 
-# Custom tasks for starting and restarting Mongrel cluster
+ ## Custom tasks for starting and restarting Mongrel cluster
+#namespace :deploy do
+#  desc "start the mongrel cluster"
+#  task :start, :roles => :app do
+#    sudo "/usr/bin/mongrel_cluster_ctl start"
+#  end
+#
+#  desc "stop the mongrel cluster"
+#  task :stop, :roles => :app do
+#    sudo "/usr/bin/mongrel_cluster_ctl stop"
+#  end
+#
+#  desc "restart the mongrel cluster"
+#  task :restart, :roles => :app do
+#    sudo "/usr/bin/mongrel_cluster_ctl restart"
+#  end
+#end
+
 namespace :deploy do
-  desc "start the mongrel cluster"
   task :start, :roles => :app do
-    sudo "/usr/bin/mongrel_cluster_ctl start"
   end
 
-  desc "stop the mongrel cluster"
   task :stop, :roles => :app do
-    sudo "/usr/bin/mongrel_cluster_ctl stop"
   end
 
-  desc "restart the mongrel cluster"
+  desc "Restart Application"
   task :restart, :roles => :app do
-    sudo "/usr/bin/mongrel_cluster_ctl restart"
+    run "touch #{release_path}/tmp/restart.txt"
   end
+
+#  task :after_update_code, :roles => :app do
+#    run "rm -rf #{release_path}/public/.htaccess"
+#  end
 end