| 1 |
#!/sbin/runscript |
| 2 |
# Copyright 1999-2004 Gentoo Foundation |
| 3 |
# Distributed under the terms of the GNU General Public License v2 |
| 4 |
# $Header: /var/cvsroot/gentoo/src/livecd-tools/spind.init,v 1.3 2004/11/19 16:11:24 wolf31o2 Exp $ |
| 5 |
|
| 6 |
depend() { |
| 7 |
before local |
| 8 |
} |
| 9 |
|
| 10 |
start() { |
| 11 |
ebegin "Starting spin daemon" |
| 12 |
start-stop-daemon --start --quiet --exec /usr/sbin/spind |
| 13 |
eend $? |
| 14 |
} |
| 15 |
|
| 16 |
stop() { |
| 17 |
ebegin "Stopping spind" |
| 18 |
start-stop-daemon --stop --quiet --exec /usr/sbin/spind |
| 19 |
eend $? |
| 20 |
} |