2011-01-17 12:58:03 -05:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2011-07-07 22:14:58 -04:00
|
|
|
# $OpenBSD: samba.rc,v 1.3 2011/07/08 02:14:59 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
|
2011-07-07 22:14:58 -04:00
|
|
|
_pkg_scripts="smbd nmbd"
|
2011-01-17 12:58:03 -05:00
|
|
|
|
2011-07-07 22:14:58 -04:00
|
|
|
set -A _s -- ${_pkg_scripts}
|
2011-01-17 12:58:03 -05:00
|
|
|
|
2011-04-03 14:07:52 -04:00
|
|
|
if [ "$1" = stop ]; then
|
2011-07-07 22:14:58 -04:00
|
|
|
i=$(echo ${_pkg_scripts} | wc -w)
|
2011-04-03 14:07:52 -04:00
|
|
|
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
|
2011-07-07 22:14:58 -04:00
|
|
|
for i in ${_pkg_scripts}; do /etc/rc.d/$i $1; done
|
2011-04-03 14:07:52 -04:00
|
|
|
fi
|