#!/bin/sh PATH=/usr/bin:/bin HOME=/root case "$1" in start) /opt/QtPalmtop/bin/opieatd & ;; stop) kill `cat /var/run/opieatd.pid` ;; esac exit 0