diff options
author | Andras Timar <andras.timar@collabora.com> | 2020-07-05 09:01:50 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2020-07-05 13:28:28 +0200 |
commit | 322eaf58142f692fd393bd0ec6a98a073e4c494a (patch) | |
tree | 3ee0ff83be6393d6fbc89100254b68eee7d2ae47 | |
parent | a22392d8270de5d6aa411d88e8202a199347ebcf (diff) |
systemplate files are not writable by lool user
See also f1be65668c749526011faa39266f289522a9cf68
systemplate files should not be writable by lool user
Change-Id: I5684248d3d4b4b0ba56f8c5ab490a6e7df0e0038
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/98069
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | debian/loolwsd.postinst.in | 2 | ||||
-rw-r--r-- | tools/Config.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/loolwsd.postinst.in b/debian/loolwsd.postinst.in index ac38e2ab1..05e0c02f9 100644 --- a/debian/loolwsd.postinst.in +++ b/debian/loolwsd.postinst.in @@ -28,7 +28,7 @@ case "$1" in loolwsd-generate-proof-key >/dev/null 2>&1 cat << EOF > /etc/apt/apt.conf.d/25loolwsd // Rebuild systemplate of @APP_NAME@ -DPkg::Post-Invoke { "echo Updating loolwsd systemplate;su lool --shell=/bin/sh -c 'loolwsd-systemplate-setup /opt/lool/systemplate @LO_PATH@ >/dev/null 2>&1'"; }; +DPkg::Post-Invoke { "echo Updating loolwsd systemplate;loolwsd-systemplate-setup /opt/lool/systemplate @LO_PATH@ >/dev/null 2>&1"; }; EOF ;; diff --git a/tools/Config.cpp b/tools/Config.cpp index 9c4093910..4bf297fb6 100644 --- a/tools/Config.cpp +++ b/tools/Config.cpp @@ -364,7 +364,7 @@ int Config::main(const std::vector<std::string>& args) } else if (args[0] == "update-system-template") { - const char command[] = "su lool --shell=/bin/sh -c 'loolwsd-systemplate-setup /opt/lool/systemplate " LO_PATH " >/dev/null 2>&1'"; + const char command[] = "loolwsd-systemplate-setup /opt/lool/systemplate " LO_PATH " >/dev/null 2>&1"; std::cout << "Running the following command:" << std::endl << command << std::endl; |