- cleanup init script
This commit is contained in:
Stephan Raue 2010-04-28 00:20:26 +02:00
parent 5ca1b266eb
commit 60a051ce1b

View File

@ -5,16 +5,6 @@
(
progress "Starting LCD daemon"
LCD_USERCONF="/storage/.config/LCDd.conf"
LCD_DEFCONF="/etc/LCDd.conf"
LCD_ARG=""
if [ -f $LCD_USERCONF ]; then
LCD_ARG="$LCD_ARG -c $LCD_USERCONF"
else
LCD_ARG="$LCD_ARG -c $LCD_DEFCONF"
fi
LCDd $LCD_ARG > /dev/null 2>&1
LCDd -c /etc/LCDd.conf > /dev/null 2>&1
)&