SERVICES="atabake canolad downloadmanager"

# each service will be run with maximum verbosity and logging enabled
# the logs are stored on /tmp
for i in $SERVICES; do
    SERVICE_OPTIONS="-vvv -l /tmp/$i.log"
    $i stop
    $i start $SERVICE_OPTIONS
done

# starting canola with the following options:
# -c : indicates where canola configurations are stored, this is the default
# -e : indicates which engine to use, on maemo we use x11-16
# -v : each time -v is specified, the amount of verbosity is increased
# -n : runs canola inside a window and not fullscreen
bin/canola -c canola.conf -e software_x11 -vvv -n

