description "Starts the imhere application" start on started hildon-desktop exec /etc/init.d/imhere start stop on starting shutdown
#!/bin/sh case "$1" in start) echo "IMHERE INIT CALLED" >> /home/user/startuplog /usr/bin/imhere ;; *) esac echo "IMHERE INIT EXITING" >> /home/user/startuplog exit 0
MHERE INIT CALLED IMHERE INIT EXITING