mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-13 04:22:58 +02:00
* SquidGuard - mit Patch damit es mit der DB 4.4.20 funktioniert. * wput - wget nur andersrum. * hddtemp/hddgraph * etherwake * Saemtliche Bootscripts vom BLFS * vpn-restart-script... muss noch bearbeitet werden. Geaendert: * Karsten Rechenbachs Emailadresse in die Credits gebaut. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@168 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
55 lines
911 B
Bash
55 lines
911 B
Bash
#!/bin/sh
|
|
# Begin /etc/init.d/samba
|
|
|
|
# Based on sysklogd script from LFS-3.1 and earlier.
|
|
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
|
|
|
|
#$LastChangedBy: bdubbs $
|
|
#$Date: 2005-08-01 14:29:19 -0500 (Mon, 01 Aug 2005) $
|
|
|
|
. /etc/init.d/init-functions
|
|
|
|
case "$1" in
|
|
start)
|
|
boot_mesg "Starting nmbd..."
|
|
loadproc /usr/sbin/nmbd -D
|
|
|
|
boot_mesg "Starting smbd..."
|
|
loadproc /usr/sbin/smbd -D
|
|
;;
|
|
|
|
stop)
|
|
boot_mesg "Stopping smbd..."
|
|
killproc /usr/sbin/smbd
|
|
|
|
boot_mesg "Stopping nmbd..."
|
|
killproc /usr/sbin/nmbd
|
|
;;
|
|
|
|
reload)
|
|
boot_mesg "Reloading smbd..."
|
|
reloadproc /usr/sbin/smbd
|
|
|
|
boot_mesg "Reloading nmbd..."
|
|
reloadproc /usr/sbin/nmbd
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
;;
|
|
|
|
status)
|
|
statusproc /usr/sbin/nmbd
|
|
statusproc /usr/sbin/smbd
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop|reload|restart|status}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# End /etc/init.d/samba
|