# dcs
#
# Start device control service

start on boot-phase dcs-modules-loaded

script

    # By default, an upstart task will automatically exit on an error. We
    # want the task to complete even if any of our commands return an error
    # so we turn off the exit-on-error option
    set +e

    sleep 10
 
    # Start Intel's device-control-service
    /usr/bin/dcs/dcs
	
    # Re-enable the exit-on-error option now that we're done
    set -e


end script
