dc70b6b6e67adce6684728f7090ba77f6ebccbad
[mirror/dsa-wiki.git] / input / howto / bacula-hints.mdwn
1 ## useful bacula commands 
2
3 ### find out what was in a backup run
4  * get the job-id from the bacula mail
5  * run the following on bacula database (currently bmdb1.debian.org)
6 ```
7 select path,name from filename inner join file on filename.filenameid=file.filenameid inner join path on path.pathid=file.pathid where file.jobid=$JOBID;
8 ```