On Fri, 2006-07-28 at 13:55 -0700, Jo Rhett wrote:
> The manual is out of date.  In particular, the mail commands don't  
> exist (it uses bsmtp now) and the traceback module uses a dbx library/ 
> database of some sort.  I can find no documentation for what this is.
> 
> gcore -o /var/db/bacula/${PNAME} $2
> dbx $1 $2 </usr/local/share/bacula/btraceback.dbx 2>&1 \
> | /usr/local/sbin/bsmtp -h localhost -f [EMAIL PROTECTED] -s "Bacula DBX  
> traceback of ${PNAME}" [EMAIL PROTECTED]
> 

The code that you quoted is only used by SunOS (dbx is the orignal
UCB/BSD debugger it is equivalent to gdb in Linux systems). If you look
at the rest of btraceback (in the CVS source tree at scripts/btraceback
(or scripts/btraceback.in if you haven't run configure yet) you will see
the appropriate line for gdb i.e.

  gdb -quiet -batch -x /etc/bacula/scripts/btraceback.gdb $1 $2 2>&1 \
   | /usr/sbin/bsmtp -h localhost -f [EMAIL PROTECTED] -s "Bacula GDB
traceback of ${PNAME}" [EMAIL PROTECTED]

Richard

P.S. If you want to find more about dbx try using "dbx debugger" in
google or you can find an entry at wikipedia
http://en.wikipedia.org/wiki/Dbx_debugger

-- 
Richard Mortimer <[EMAIL PROTECTED]>


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to