a132e06409
Preiniting LibreOfficeKit and forking kit processes (instead of spawning) has worked fine for a while, and has been the default way this works. No 'loolkit' program gets built any more.
33 lines
886 B
Bash
Executable file
33 lines
886 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
configure)
|
|
setcap cap_fowner,cap_mknod,cap_sys_chroot=ep /usr/bin/loolbroker || true
|
|
|
|
adduser --quiet --system --group --home /opt/lool lool
|
|
mkdir -p /var/cache/loolwsd && chown lool: /var/cache/loolwsd
|
|
rm -rf /var/cache/loolwsd/*
|
|
|
|
# We assume that the LibreOffice to be used is built TDF-style
|
|
# and installs in /opt/collaboraoffice5.0, and that /opt/lool is
|
|
# on the same file system
|
|
|
|
rm -rf /opt/lool
|
|
mkdir -p /opt/lool/child-roots
|
|
chown lool: /opt/lool
|
|
chown lool: /opt/lool/child-roots
|
|
|
|
su lool --shell=/bin/sh -c "loolwsd-systemplate-setup /opt/lool/systemplate /opt/collaboraoffice5.0 >/dev/null"
|
|
;;
|
|
|
|
esac
|
|
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl --system daemon-reload >/dev/null || true
|
|
systemctl enable loolwsd.service >/dev/null || true
|
|
deb-systemd-invoke start loolwsd.service >/dev/null || true
|
|
fi
|
|
|
|
exit 0
|