Hi,
I'm not an expert but i use this bash script to remove all old jobs in my debian Bareos server catalog (work with Mysql only)
You can use Adminer.php or phpmyadmin for manual deleting
This script will remove all you're old jobs => older than 1 hour :)
The script :
____________________________________________________________________________________________
#!/bin/bash
# Change this values to your bareosdatabase's login
userdb='bareos'
passdb='xxxxxxxxxxxxx'
catalogFile=`find /etc/bareos/bareos-dir.d/catalog/ -type f`
dbUser=`grep dbuser $catalogFile | grep -o '".*"' | sed 's/"//g'`
dbPwd=`grep dbpassword $catalogFile | grep -o '".*"' | sed 's/"//g'`
OldVols=$(mysql bareos -u$userdb -p$passdb -se "SELECT VolumeName FROM Media WHERE LastWritten < (NOW() - INTERVAL 1 HOUR);")
for volName in $OldVols
do
/bin/bconsole << EOD
delete volume=$volName yes
quit
EOD
done
_________________________________________________________________________________
Like I said, I am far from an expert. So wait to see other answers to confirm this.
Good luck.