Port samba to -ng, add enhanced attributes patch, closes #674
git-svn-id: svn://svn.openwrt.org/openwrt/packages@4662 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
24
net/samba/files/samba.init
Normal file
24
net/samba/files/samba.init
Normal file
@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
DEFAULT=/etc/default/samba
|
||||
RUN_D=/var/run/samba
|
||||
NMBD_PID_F=$RUN_D/nmbd.pid
|
||||
SMBD_PID_F=$RUN_D/smbd.pid
|
||||
[ -f $DEFAULT ] && . $DEFAULT
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
mkdir -p $RUN_D
|
||||
nmbd -D $NMBD_OPTIONS
|
||||
smbd -D $SMBD_OPTIONS
|
||||
;;
|
||||
stop)
|
||||
[ -f $SMBD_PID_F ] && kill $(cat $SMBD_PID_F)
|
||||
[ -f $NMBD_PID_F ] && kill $(cat $NMBD_PID_F)
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 (start|stop)"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
Reference in New Issue
Block a user