repo.or.cz
/
nslu2-linux
/
optware.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ccollect:0.6.2->0.7.0
[nslu2-linux/optware.git]
/
sources
/
samba2
/
preinst
blob
947b34e134f8735b878f6e2d71aa5d90cb15b58a
1
#!/bin/sh
2
3
4
if
[
-n
"`pidof smbd`"
] ;
then
5
echo
"Stopping smbd:"
6
killall smbd
7
fi
8
9
if
[
-n
"`pidof nmbd`"
] ;
then
10
echo
"Stopping nmbd:"
11
killall nmbd
12
fi
13