author | jamey <jamey> | 2003-03-24 18:13:02 (UTC) |
---|---|---|
committer | jamey <jamey> | 2003-03-24 18:13:02 (UTC) |
commit | 96d08c424282810782c657e814c3f19d23a45db8 (patch) (side-by-side diff) | |
tree | 16cc95e89a5f7e87970725d646985d8f5d6f15c0 /noncore | |
parent | c23656023651523d37406b43fd031ace4e2de89f (diff) | |
download | opie-96d08c424282810782c657e814c3f19d23a45db8.zip opie-96d08c424282810782c657e814c3f19d23a45db8.tar.gz opie-96d08c424282810782c657e814c3f19d23a45db8.tar.bz2 |
modify postinst scripts to prevent spurious nonzero exit codes
-rwxr-xr-x | noncore/applets/notesapplet/opie-notesapplet.postinst | 6 | ||||
-rwxr-xr-x | noncore/applets/wirelessapplet/opie-wirelessapplet.postinst | 6 | ||||
-rwxr-xr-x | noncore/games/kpacman/opie-kpacman.postinst | 1 |
3 files changed, 11 insertions, 2 deletions
diff --git a/noncore/applets/notesapplet/opie-notesapplet.postinst b/noncore/applets/notesapplet/opie-notesapplet.postinst index 9c8c2d9..a549c30 100755 --- a/noncore/applets/notesapplet/opie-notesapplet.postinst +++ b/noncore/applets/notesapplet/opie-notesapplet.postinst @@ -1,2 +1,6 @@ #!/bin/sh -pidof -s qpe >/dev/null && /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +if pidof -s qpe >/dev/null; then + /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +else + exit 0 +fi diff --git a/noncore/applets/wirelessapplet/opie-wirelessapplet.postinst b/noncore/applets/wirelessapplet/opie-wirelessapplet.postinst index 9c8c2d9..a549c30 100755 --- a/noncore/applets/wirelessapplet/opie-wirelessapplet.postinst +++ b/noncore/applets/wirelessapplet/opie-wirelessapplet.postinst @@ -1,2 +1,6 @@ #!/bin/sh -pidof -s qpe >/dev/null && /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +if pidof -s qpe >/dev/null; then + /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +else + exit 0 +fi diff --git a/noncore/games/kpacman/opie-kpacman.postinst b/noncore/games/kpacman/opie-kpacman.postinst index 64ab624..72d35b7 100755 --- a/noncore/games/kpacman/opie-kpacman.postinst +++ b/noncore/games/kpacman/opie-kpacman.postinst @@ -1,6 +1,7 @@ #!/bin/sh if [ ! -f $HOME/Settings/kpacman.conf ] + exit 0 then cp /opt/QtPalmtop/share/kpacman/kpacman.conf $HOME/Settings/ fi |