- global error indicators should be displayed in red
- Terminology: machine vs. host
- Detector of orphans (unused queue dirs, jobs on non-existent machines, non-queued jobs)
+- When bex run uploads a temporary file, shouldn't it be more insistent on removing it on failures?
"help" => \&usage,
) or die "Try `bex run --help' for more information.\n";
+# We do not want SIGPIPE on writes to the status FIFO
+$SIG{'PIPE'} = 'IGNORE';
+
my $status_fd;
if (defined $status_fifo) {
open $status_fd, '>>', $status_fifo or die "Cannot open status FIFO: $!";