public
Description: master respository for deprec - deployment recipes for capistrano
Homepage: http://www.deprec.org/
Clone URL: git://github.com/mbailey/deprec.git
Remove ROLES wrapper as the tasks being called now specify ROLES
mbailey (author)
Mon Sep 08 19:15:35 -0700 2008
commit  06845d6a107a42f72932705423109b8e0c7c21b1
tree    7ca3f7286e6a071a481e1570085c4e22848a4ed9
parent  673236a7b4141911f47be801b7dbb05ca0ae3f16
...
61
62
63
64
65
66
 
67
 
68
69
70
...
73
74
75
76
77
78
 
79
80
81
82
83
84
 
 
85
86
87
...
61
62
63
 
 
 
64
65
66
67
68
69
...
72
73
74
 
 
 
75
76
 
 
 
 
 
77
78
79
80
81
0
@@ -61,10 +61,9 @@ Capistrano::Configuration.instance(:must_exist).load do
0
         top.deprec.ruby.install      
0
         top.deprec.rubygems.install
0
         
0
-        deprec2.for_roles('web') do
0
-          top.deprec.nginx.install        
0
-        end
0
+        top.deprec.nginx.install        
0
         
0
+        # XXX check this out before removing - Mike
0
         deprec2.for_roles('app') do
0
           top.deprec.svn.install
0
           top.deprec.git.install     
0
@@ -73,15 +72,10 @@ Capistrano::Configuration.instance(:must_exist).load do
0
           top.deprec.rails.install
0
         end
0
         
0
-        deprec2.for_roles('web,app') do
0
-          top.deprec.logrotate.install        
0
-        end
0
+        top.deprec.logrotate.install        
0
         
0
-        # Install database separately 
0
-        deprec2.for_roles('db') do
0
-          top.deprec.mysql.install
0
-          top.deprec.mysql.start      
0
-        end
0
+        top.deprec.mysql.install
0
+        top.deprec.mysql.start      
0
 
0
       end
0
       

Comments