17 lines
535 B
Bash
17 lines
535 B
Bash
#!/bin/sh -e
|
|
#
|
|
#
|
|
# This script is executed at the end of each multiuser runlevel.
|
|
# Make sure that the script will "exit 0" on success or any other
|
|
# value on error.
|
|
#
|
|
# In order to enable or disable this script just change the execution
|
|
# bits.
|
|
#
|
|
# By default this script does nothing.
|
|
|
|
# HRConvert2 Conversion Engine Startup Entry
|
|
# You may need to manually locate the soffice binary and adjust the path accordingly.
|
|
/usr/bin/soffice --headless --accept="socket,host=127.0.0.1,port=$soffice_port;urp;" --nofirststartwizard &
|
|
|
|
exit 0
|