Index: trunk/ippScripts/scripts/dist_queue_runs.pl
===================================================================
--- trunk/ippScripts/scripts/dist_queue_runs.pl	(revision 24001)
+++ trunk/ippScripts/scripts/dist_queue_runs.pl	(revision 24038)
@@ -98,4 +98,18 @@
 }
 
+# queue rcRuns for any distRuns that have completed and have interested destinations
+{
+    my $command = "$disttool -queuercrun";
+    $command .= " -dbname $dbname" if defined $dbname;
+    my ( $success, $error_code, $full_buf, $stdout_buf, $stderr_buf ) =
+        run(command => $command, verbose => $verbose);
+    unless ($success) {
+        $error_code = (($error_code >> 8) or $PS_EXIT_PROG_ERROR);
+        &my_die("Unable to perform $command error_code: $error_code", $error_code);
+    }
+    # display the output from the command
+    print STDERR join "", @$stdout_buf if $verbose;
+}
+
 exit 0;
 
