737f427a15
git-svn-id: svn://svn.openwrt.org/openwrt/packages@6119 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
288 B
Bash
14 lines
288 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
START=99
|
|
start() {
|
|
[ -d /tmp/.shell-fm ] || mkdir /tmp/.shell-fm
|
|
[ -L /tmp/.shell-fm/shell-fm.rc ] || ln -s /etc/shell-fm.rc /tmp/.shell-fm/shell-fm.rc
|
|
HOME=/tmp shell-fm -d
|
|
}
|
|
|
|
stop() {
|
|
echo "quit" | telnet localhost 54311
|
|
}
|