2011-01-17 12:58:03 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2011-04-03 14:07:52 -04:00
|
|
|
# $OpenBSD: samba.rc,v 1.2 2011/04/03 18:07:52 ajacoutot Exp $
|
2011-01-17 12:58:03 -05:00
|
|
|
|
2011-04-03 14:07:52 -04:00
|
|
|
# "meta" script running the following rc.d(8) scripts with the given argument
|
|
|
|
_rc_scripts="smbd nmbd"
|
2011-01-17 12:58:03 -05:00
|
|
|
|
2011-04-03 14:07:52 -04:00
|
|
|
set -A _s -- ${_rc_scripts}
|
2011-01-17 12:58:03 -05:00
|
|
|
|
2011-04-03 14:07:52 -04:00
|
|
|
if [ "$1" = stop ]; then
|
|
|
|
i=$(echo ${_rc_scripts} | wc -w)
|
|
|
|
while [ $i -ne 0 ]; do
|
|
|
|
i=$((i-1))
|
|
|
|
/etc/rc.d/${_s[$i]} $1
|
2011-01-17 12:58:03 -05:00
|
|
|
done
|
2011-04-03 14:07:52 -04:00
|
|
|
else
|
|
|
|
for i in ${_rc_scripts}; do /etc/rc.d/$i $1; done
|
|
|
|
fi
|