# latebootcmds
#
# Run commands that can or should be delayed until the end of
# boot

start on runlevel 2

script

    # For now, we just arbitrarily wait 10 seconds. Should change this
    # to some more specific and accurate as needed.
    sleep 10

    # Once device has booted, we no longer need to configure modules so lets
    # disable the config-modules upstart task
    if [ -e /etc/event.d/config-modules ]; then
        /usr/sbin/update-upstart disable config-modules
    fi

end script
