<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -13,33 +13,33 @@ module SanJuan
       unless @meta_tasks_defined
         namespace :all do
           desc &quot;Describe the status of the running tasks on each server&quot;
-          task :status, :roles =&gt; san_juan.roles do
-            san_juan.roles.each { |role| send(role, :status) }
+          task :status do
+            san_juan.roles.each { |role| send(role).send(:status) }
           end
 
           desc &quot;Start god&quot;
           task :start do
-            san_juan.roles.each { |role| send(role, :start) }
+            san_juan.roles.each { |role| send(role).send(:start) }
           end
 
           desc &quot;Reloading God Config&quot;
           task :reload do
-            san_juan.roles.each { |role| send(role, :reload) }
+            san_juan.roles.each { |role| send(role).send(:reload) }
           end
 
           desc &quot;Start god interactively&quot;
           task :start_interactive do
-            san_juan.roles.each { |role| send(role, :start_interactive) }
+            san_juan.roles.each { |role| send(role).send(:start_interactive) }
           end
 
           desc &quot;Quit god, but not the processes it's monitoring&quot;
           task :quit do
-            san_juan.roles.each { |role| send(role, :quit) }
+            san_juan.roles.each { |role| send(role).send(:quit) }
           end
 
           desc &quot;Terminate god and all monitored processes&quot;
           task :terminate do
-            san_juan.roles.each { |role| send(role, :terminate) }
+            san_juan.roles.each { |role| send(role).send(:terminate) }
           end
         end
       end
@@ -71,6 +71,11 @@ module SanJuan
           sudo 'god terminate'
         end
 
+        desc &quot;Describe the status of the running tasks&quot;
+        task :status, :roles =&gt; role do
+          sudo 'god status'
+        end
+
         watches.each do |watch|
           namespace watch do
             %w(start restart stop unmonitor remove log).each do |command|</diff>
      <filename>lib/san_juan.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>b7f1b8c3c23dea5c96800654327e8eeb612c4e5d</id>
    </parent>
  </parents>
  <author>
    <name>Jesse Newland</name>
    <email>jnewland@gmail.com</email>
  </author>
  <url>http://github.com/jnewland/san_juan/commit/26600fa85a8539451eea6ad1ecae03666f070790</url>
  <id>26600fa85a8539451eea6ad1ecae03666f070790</id>
  <committed-date>2008-06-23T16:13:45-07:00</committed-date>
  <authored-date>2008-06-23T16:13:45-07:00</authored-date>
  <message>fix :all namespace</message>
  <tree>94427cff66ce409504cc4d4017a3a9b42754030a</tree>
  <committer>
    <name>Jesse Newland</name>
    <email>jnewland@gmail.com</email>
  </committer>
</commit>
