- $uselist->unlock; # ... unlock the list with files in use...
- print $$output; # ... and show the output of the command
+ my $output = exec_command($command,\%data,$config);
+
+ # ... unlock the list with files in use and show the output of the command
+
+ $uselist->unlock or abort($config->{'errors'}->{'unlock_failed'},undef,{USELIST => $uselist->{'listfile'}, LOCK_FILE => $uselist->{'lockfile'}});
+ print $$output;