capserverext 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/lib/cap_server_ext.rb +1 -1
- data/lib/capserverext/recipes.rb +22 -1
- metadata +2 -2
data/History.txt
CHANGED
data/lib/cap_server_ext.rb
CHANGED
data/lib/capserverext/recipes.rb
CHANGED
@@ -160,13 +160,34 @@ Capistrano.configuration(:must_exist).load do
|
|
160
160
|
apt.install(postgres_ubuntu, :stable) # install packages for postgres
|
161
161
|
end
|
162
162
|
|
163
|
-
desc "Set up the expected application directory structure on all boxes"
|
163
|
+
desc "Set up the expected application directory structure on all boxes for nginx & postgres"
|
164
164
|
task :nginx_postgres_rails_setup, :except => { :no_release => true } do
|
165
165
|
setup_paths
|
166
166
|
setup
|
167
167
|
setup_nginx_postgres_servers
|
168
168
|
end
|
169
169
|
|
170
|
+
desc "Set up the expected application directory structure on all boxes for nginx & mysql"
|
171
|
+
task :nginx_mysql_rails_setup, :except => { :no_release => true } do
|
172
|
+
setup_paths
|
173
|
+
setup
|
174
|
+
setup_nginx_mysql_servers
|
175
|
+
end
|
176
|
+
|
177
|
+
desc "Set up the expected application directory structure on all boxes for apache & mysql"
|
178
|
+
task :apache_mysql_rails_setup, :except => { :no_release => true } do
|
179
|
+
setup_paths
|
180
|
+
setup
|
181
|
+
setup_apache_mysql_servers
|
182
|
+
end
|
183
|
+
|
184
|
+
desc "Set up the expected application directory structure on all boxes for apache & postgres"
|
185
|
+
task :apache_postgres_rails_setup, :except => { :no_release => true } do
|
186
|
+
setup_paths
|
187
|
+
setup
|
188
|
+
setup_apache_postgres_servers
|
189
|
+
end
|
190
|
+
|
170
191
|
desc "setup and configure servers for nginx and postgres"
|
171
192
|
task :setup_nginx_postgres_servers do
|
172
193
|
setup_web_for_nginx
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: capserverext
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.0.
|
7
|
-
date: 2007-04-
|
6
|
+
version: 0.0.3
|
7
|
+
date: 2007-04-18 00:00:00 +02:00
|
8
8
|
summary: Easily setup postgresql & nginx (http://sysoev.ru/nginx/) on ubuntu hosts.
|
9
9
|
require_paths:
|
10
10
|
- lib
|