mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
d6fc4eb405
(This used to be commit 8fde65239d
)
30 lines
815 B
Bash
Executable File
30 lines
815 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# kill any running samba processes
|
|
#
|
|
/etc/killall smbd nmbd
|
|
chkconfig samba off
|
|
|
|
#
|
|
# add SAMBA deamons to inetd.conf
|
|
#
|
|
cp /etc/inetd.conf /etc/inetd.O
|
|
sed -e "/^netbios/D" -e "/^#SAMBA/D" /etc/inetd.O > /etc/inetd.conf
|
|
echo '#SAMBA services' >> /etc/inetd.conf
|
|
echo netbios-ssn stream tcp nowait root /usr/samba/bin/smbd smbd >> /etc/inetd.conf
|
|
echo netbios-ns dgram udp wait root /usr/samba/bin/nmbd nmbd -S >> /etc/inetd.conf
|
|
|
|
#
|
|
# add SAMBA service ports to /etc/services
|
|
#
|
|
cp /etc/services /etc/services.O
|
|
sed -e "/^netbios/D" -e "/^#SAMBA/D" /etc/services.O > /etc/services
|
|
echo '#SAMBA services' >> /etc/services
|
|
echo 'netbios-ns 137/udp # SAMBA' >> /etc/services
|
|
echo 'netbios-ssn 139/tcp # SAMBA' >> /etc/services
|
|
|
|
#
|
|
# restart inetd to start SAMBA
|
|
#
|
|
/etc/killall -HUP inetd
|