Index: trunk/ippTasks/summit.copy.pro
===================================================================
--- trunk/ippTasks/summit.copy.pro	(revision 19266)
+++ trunk/ippTasks/summit.copy.pro	(revision 19285)
@@ -47,4 +47,7 @@
     active true
   end
+  task pztool.clearfault
+      active true
+  end
 end
 
@@ -67,4 +70,7 @@
   task summit_copy
     active false
+  end
+  task pztool.clearfault
+      active false
   end
 end
@@ -74,4 +80,5 @@
 $pztoolPendingExp_DB = 0
 $pztoolPendingImfile_DB = 0
+$pztoolClearFault_DB = 0
 
 # build a book of datastores to poll for data
@@ -433,2 +440,35 @@
     end 
 end
+
+task pztool.clearfault
+    host         local
+
+    # -exec is set much longer the first time this task runs
+    periods      -exec       7  
+    periods      -poll       1
+    periods      -timeout   30
+    npending     1
+
+    task.exec
+      if ($DB:n == 0)
+        command pztool -clearcommonfaults
+      else
+        command pztool -clearcommonfaults -dbname $DB:$pztoolClearFault_DB
+
+        $pztoolClearFault_DB ++
+        if ($pztoolClearFault_DB >= $DB:n) set pztoolClearFault_DB = 0
+      end
+      periods -exec 1800
+    end
+
+    # success
+    task.exit 0
+    end
+
+    task.exit default
+        showcommand failure
+    end
+    task.exit timeout
+        showcommand timeout
+    end
+end
