15 lines
134 B
Bash
15 lines
134 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
check() {
|
||
|
return 255
|
||
|
}
|
||
|
|
||
|
depends() {
|
||
|
echo busybox dm
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
install() {
|
||
|
inst $moddir/init.sh /init
|
||
|
}
|