Quando eu procurei por esse erro no google. Isso me deu duas opções:
a) Flash Board com a imagem mais recente b) Substitua um script led_aging.sh por um script fornecido em googlegroups e blogs.
Então, eu tentei a segunda opção primeiro e funcionou. Eu não tenho idéia, qual é o propósito de led_aging.sh
O led_aging.sh real é:
> #!/bin/sh
> # tary, 16:46 2013-4-22
>
> x=$(/bin/ps -ef | /bin/grep "[l]ed_acc") if [ ! -n "$x" -a -x
> /usr/bin/led_acc ]; then /usr/bin/led_acc & fi
Novo led_aging.sh é:
> #!/bin/sh -e
> ### BEGIN INIT INFO
> # Provides: led_aging.sh
> # Required-Start: $local_fs
> # Required-Stop: $local_fs
> # Default-Start: 2 3 4 5
> # Default-Stop: 0 1 6
> # Short-Description: Start LED aging
> # Description: Starts LED aging (whatever that is)
> ### END INIT INFO
> x=$(/bin/ps -ef | /bin/grep "[l]ed_acc") if [ ! -n "$x" -a -x
> /usr/bin/led_acc ]; then /usr/bin/led_acc & fi