Compare commits

...

2 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
f67b34b05c Change installation directory check and add dependency
Update directory check from /var to /opt/convertx and ensure dependencies.
2026-03-22 20:52:55 +01:00
MickLesk
dca71b9061 fix(convertx): add libreoffice-writer for ODT/document conversions
Fixes ODT to PDF conversion failing with ENOENT. Fixes #13185.
2026-03-22 20:44:21 +01:00
2 changed files with 4 additions and 1 deletions

View File

@@ -24,7 +24,7 @@ function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -d /var ]]; then
if [[ ! -d /opt/convertx ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
@@ -33,6 +33,8 @@ function update_script() {
systemctl stop convertx
msg_info "Stopped Service"
ensure_dependencies libreoffice-writer
msg_info "Move data-Folder"
if [[ -d /opt/convertx/data ]]; then
mv /opt/convertx/data /opt/data

View File

@@ -24,6 +24,7 @@ $STD apt install -y \
dvisvgm \
ffmpeg \
inkscape \
libreoffice-writer \
libva2 \
libvips-tools \
lmodern \