16 lines
114 B
Plaintext
16 lines
114 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=1
|
||
|
STOP=98
|
||
|
|
||
|
PROG=boot-play
|
||
|
|
||
|
start() {
|
||
|
$PROG boot &
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
$PROG shutdown
|
||
|
}
|
||
|
|