Author: jerry
Date: 2005-07-12 21:13:20 +0000 (Tue, 12 Jul 2005)
New Revision: 8391

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8391

Log:
merging cleanup from 3.0
Added:
   trunk/examples/logon/
   trunk/examples/scripts/debugging/
   trunk/examples/scripts/printing/
   trunk/examples/scripts/shares/
Removed:
   trunk/examples/genlogon/
   trunk/examples/mklogon/
   trunk/examples/ntlogon/
   trunk/examples/scripts/backtrace
   trunk/examples/scripts/perl/
   trunk/examples/svr4-startup/
Modified:
   trunk/examples/logon/ntlogon/ntlogon.py
   trunk/examples/scripts/printing/cups/smbaddprinter.pl
   trunk/examples/scripts/printing/cups/smbdelprinter.pl
   trunk/examples/scripts/shares/perl/modify_samba_config.pl
   trunk/examples/scripts/shares/python/generate_parm_table.py
   trunk/examples/scripts/shares/python/modify_samba_config.py


Changeset:
Copied: trunk/examples/logon (from rev 8382, 
branches/SAMBA_3_0_RELEASE/examples/logon)

Deleted: trunk/examples/scripts/backtrace
===================================================================
--- trunk/examples/scripts/backtrace    2005-07-12 20:56:27 UTC (rev 8390)
+++ trunk/examples/scripts/backtrace    2005-07-12 21:13:20 UTC (rev 8391)
@@ -1,41 +0,0 @@
-#! /bin/sh
-#
-# Author: Andrew Tridgell <tridge at samba dot org>
-
-# we want everything on stderr, so the program is not disturbed
-exec 1>&2
-
-BASENAME=$( basename $0)
-
-test -z ${GDB_BIN} && GDB_BIN=$( type -p gdb)
-if [ -z ${GDB_BIN} ]; then
-       echo "ERROR: ${BASENAME} needs an installed gdb. "
-       exit 1
-fi
-
-if [ -z $1 ]; then
-       echo "ERROR: ${BASENAME} needs a PID. "
-       exit 1
-fi
-PID=$1
-
-# use /dev/shm as default temp directory
-test -d /dev/shm && \
-       TMP_BASE_DIR=/dev/shm || \
-       TMP_BASE_DIR=/var/tmp
-TMPFILE=$( mktemp -p ${TMP_BASE_DIR} backtrace.XXXXXX)
-if [ $? -ne 0 ]; then
-       echo "ERROR: ${basename} can't create temp file in ${TMP_BASE_DIR}. "
-       exit 1
-fi
-
-cat << EOF  > "${TMPFILE}"
-set height 0
-up 8
-bt full
-quit
-EOF
-
-${GDB_BIN} -x "${TMPFILE}" "/proc/${PID}/exe" "${PID}"
-
-/bin/rm -f "${TMPFILE}"

Copied: trunk/examples/scripts/debugging (from rev 8382, 
branches/SAMBA_3_0_RELEASE/examples/scripts/debugging)

Copied: trunk/examples/scripts/printing (from rev 8382, 
branches/SAMBA_3_0_RELEASE/examples/scripts/printing)

Copied: trunk/examples/scripts/shares (from rev 8382, 
branches/SAMBA_3_0_RELEASE/examples/scripts/shares)

Reply via email to