13 lines
169 B
Plaintext
13 lines
169 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2006 OpenWrt.org
|
||
|
START=80
|
||
|
|
||
|
start() {
|
||
|
/usr/sbin/petitboot-wrapper &
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall petitboot-wrapper
|
||
|
killall petitboot
|
||
|
}
|