petitboot: Update to petitboot to latest
[openwrt/svn-archive/archive.git] / utils / petitboot / files / petitboot.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
3
4 START=90
5
6 kill_discover() {
7 killall -q -KILL pb-discover
8 umount -f -d /var/petitboot/mnt/* 2>/dev/null
9 }
10
11 start() {
12 kill_discover
13 /usr/sbin/pb-discover 2>&- >&- &
14 }
15
16 stop() {
17 # first signal pb-discover to exit
18 killall -q -INT pb-discover
19 sleep 3
20 # now force it
21 kill_discover
22 }