Bug #657
roda-soffice-headless
| Status: | New | Start: | 04/01/2010 | |
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
Description
The start/stop script roda-soffice-headless won't correctly shut down OpenOffice. The executable soffice is a script which calls soffice.bin. The RODA script roda-soffice-headless will kill the script soffice, if it is running, without killing the binary soffice.bin. If soffice.bin is killed first, then the script soffice will terminate anyway.
The line to change is:
killall -9 soffice 2> /dev/null || killall -9 soffice.bin
which, if modified to:
killall -9 soffice.bin 2> /dev/null || killall -9 soffice
will not leave soffice.bin running when it should have been terminated.