-rwxr-xr-x | root/etc/init.d/opie | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/root/etc/init.d/opie b/root/etc/init.d/opie index d49498c..a723864 100755 --- a/root/etc/init.d/opie +++ b/root/etc/init.d/opie @@ -34,13 +34,13 @@ if [ -e /proc/cpuinfo ] ; then if (grep -qi "HP Jornada 56x" /proc/cpuinfo) ; then export QWS_DISPLAY=Transformed:Rot0:0 fi fi -if [ ! -x $OPIEDIR/bin/qpe ] ; then +if [ ! -x $OPIEDIR/bin/opie ] ; then echo Opie not installed exit 0 fi . /etc/profile @@ -68,24 +68,24 @@ case $1 in if [ -x $OPIEDIR/bin/opie-sh-ssh-askpass.sh ]; then export SSH_ASKPASS=$OPIEDIR/bin/opie-sh-ssh-askpass.sh fi if ! killall -0 syslogd 2>/dev/null >/dev/null; then echo Starting Opie.... - $SSHAGENT $OPIEDIR/bin/qpe 2>/dev/null >/dev/null & + $SSHAGENT $OPIEDIR/bin/opie 2>/dev/null >/dev/null & else echo Starting Opie with syslog logging..... - ( $SSHAGENT $OPIEDIR/bin/qpe 2>&1 | logger ) & + ( $SSHAGENT $OPIEDIR/bin/opie 2>&1 | logger ) & fi fi ;; 'stop') echo "Killing Opie..." - killall qpe + killall opie killall opie-login ;; *) echo "usage: $0 { start | stop }" |