12 lines
262 B
Plaintext
12 lines
262 B
Plaintext
![]() |
#!/bin/sh /etc/rc.common
|
||
|
# Copyright (C) 2008 OpenWrt.org
|
||
|
START=99
|
||
|
|
||
|
start() {
|
||
|
LD_PRELOAD=/usr/lib/libX11.so /usr/bin/paroli-launcher & # LD_PRELOAD to workaround some runtime linking problems - needs to be fixed
|
||
|
}
|
||
|
|
||
|
stop() {
|
||
|
killall paroli-launcher
|
||
|
}
|