Skip to content

APT GET Troubleshooting (led_aging.sh)

Luca Zimmermann edited this page Mar 10, 2015 · 1 revision

The BeagleBone has a bad script called led_aging.sh. This has no INIT INFO by default, so the dependency is $all, which can't be true. So just add following lines to /etc/init.d/led_aging.sh after #!/bin/sh:

### BEGIN INIT INFO
# Provides:          led_aging
# Required-Start:    $local_fs
# Required-Stop:     $local_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Probably the control of the user LEDs if nothing specified?
### END INIT INFO
Clone this wiki locally