[package] fix iptraf compilation failure (#4387)
[openwrt/svn-archive/archive.git] / phone / paroli / files / paroli.init
1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2008 OpenWrt.org
3 START=99
4
5 start() {
6 (sleep 10 && DISPLAY=":0" LD_PRELOAD=/usr/lib/libX11.so /usr/bin/paroli-launcher) & # sleep to wait until the xserver is started | LD_PRELOAD to workaround some runtime linking problems - needs to be fixed
7 }
8
9 stop() {
10 killall paroli-launcher
11 }