summaryrefslogtreecommitdiff
path: root/root/etc/init.d/opieatd
Unidiff
Diffstat (limited to 'root/etc/init.d/opieatd') (more/less context) (show whitespace changes)
-rwxr-xr-xroot/etc/init.d/opieatd2
1 files changed, 1 insertions, 1 deletions
diff --git a/root/etc/init.d/opieatd b/root/etc/init.d/opieatd
index 83f6035..765426c 100755
--- a/root/etc/init.d/opieatd
+++ b/root/etc/init.d/opieatd
@@ -5,11 +5,11 @@ HOME=/root
5 5
6case "$1" in 6case "$1" in
7 start) 7 start)
8 /opt/QtPalmtop/bin/opieatd & 8 /opt/QtPalmtop/bin/opieatd &
9 ;; 9 ;;
10 stop) 10 stop)
11 killall opieatd 11 kill `cat /var/run/opieatd.pid`
12 ;; 12 ;;
13esac 13esac
14 14
15exit 0 15exit 0