obbistrano 1.1.18 → 1.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/obbistrano_tasks.rb +3 -3
- data/obbistrano.gemspec +1 -1
- metadata +1 -1
data/lib/obbistrano_tasks.rb
CHANGED
@@ -290,7 +290,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
290
290
|
end
|
291
291
|
|
292
292
|
desc "Creates a new Apache VHost."
|
293
|
-
task :vhost :roles => [:host] do
|
293
|
+
task :vhost, :roles => [:host] do
|
294
294
|
config_check
|
295
295
|
needs_root
|
296
296
|
fedora.vhost
|
@@ -298,7 +298,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
298
298
|
end
|
299
299
|
|
300
300
|
desc "Sets up a new user."
|
301
|
-
task :setup_user :roles => [:host] do
|
301
|
+
task :setup_user, :roles => [:host] do
|
302
302
|
config_check
|
303
303
|
needs_root
|
304
304
|
fedora.setup_user
|
@@ -317,7 +317,7 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
317
317
|
end
|
318
318
|
|
319
319
|
desc "Creates a MySQL user and database"
|
320
|
-
task :setup_mysql do
|
320
|
+
task :setup_mysql, :roles =>[:host] do
|
321
321
|
config_check
|
322
322
|
needs_root
|
323
323
|
set :user_to_add, "#{user}"
|
data/obbistrano.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{obbistrano}
|
5
|
-
s.version = "1.1.
|
5
|
+
s.version = "1.1.19"
|
6
6
|
s.authors = ["Ross Riley", "One Black Bear"]
|
7
7
|
s.date = Time.now
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|