Displaying 1 result from an estimated 1 matches for "samba_nmbd_debug_level".
2001 Apr 01
0
(no subject)
...ba is not starting after
reboots. I have added the following S99samba to the /etc/rc3.d. I do not
know why not?.
sAm
#!/sbin/sh
#
# Start Samba SMB file/print services
# Set environment
PATH=/usr/bin:/sbin:/usr/sbin export PATH
# Samba directory
SAMBA_DIR=/opt/samba
SAMBA_SMBD_DEBUG_LEVEL=0
SAMBA_NMBD_DEBUG_LEVEL=0
SAMBA_SMBD_LOG=/var/opt/samba/log.smb
SAMBA_NMBD_LOG=/var/opt/samba/log.nmb
# Kill all processes matching a certain name
kill_proc () {
ps -ef | grep "$1" | grep -v grep | while read PROC; do \
PID=`echo ${PROC} | awk '{ print $2 }'`
[ ${PID} -gt 0 ] && kill ${PID}...