1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/sound/shell-fm/files/shell-fm.init
Felix Fietkau 9e23717cab oops... forgot the files :)
SVN-Revision: 6119
2007-01-17 20:36:30 +00:00

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
}