Bug 247716

Summary: SAMBA start script doesn't start nmbd daemon
Product: [Fedora] Fedora Reporter: Joshua Rosen <bjrosen>
Component: sambaAssignee: Simo Sorce <ssorce>
Status: CLOSED DUPLICATE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: high Docs Contact:
Priority: low    
Version: 7   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2007-07-10 23:38:24 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Joshua Rosen 2007-07-10 22:36:07 UTC
Description of problem:

The F7 /etc/init.d/smb script doesn't start the nmbd daemon. As a result the
SAMBA shares aren't visible to Windows. The fix is to replace the F7 smb script
with the FC6 version.

Version-Release number of selected component (if applicable):


How reproducible: 100%

Here is the start() script in F7

start() {
        KIND="SMB"
	echo -n $"Starting $KIND services: "
	daemon smbd $SMBDOPTIONS
	RETVAL=$?
	echo
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/smb || \
	   RETVAL=1
	return $RETVAL
}

Here is the script from FC6

start() {
        KIND="SMB"
	echo -n $"Starting $KIND services: "
	daemon smbd $SMBDOPTIONS
	RETVAL=$?
	echo
        KIND="NMB"
	echo -n $"Starting $KIND services: "
	daemon nmbd $NMBDOPTIONS
	RETVAL2=$?
	echo
	[ $RETVAL -eq 0 -a $RETVAL2 -eq 0 ] && touch /var/lock/subsys/smb || \
	   RETVAL=1
	return $RETVAL
}




Steps to Reproduce:
1.
2.
3.
  
Actual results:


Expected results:


Additional info:

Comment 1 Joshua Rosen 2007-07-10 23:12:20 UTC
*** Bug 247714 has been marked as a duplicate of this bug. ***

Comment 2 Simo Sorce 2007-07-10 23:38:24 UTC

*** This bug has been marked as a duplicate of 244984 ***