summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorMichael Kaye <1917473+michaelkaye@users.noreply.github.com>2019-09-03 16:36:01 +0100
committerGitHub <noreply@github.com>2019-09-03 16:36:01 +0100
commit894c1a575979a52114fac09ab3814f4fe023659a (patch)
treee5eceb39dca1849899a2a14aec5d0847305934ea /changelog.d
parentEnsure an auth instance is available to ListMediaInRoom (#5967) (diff)
downloadsynapse-894c1a575979a52114fac09ab3814f4fe023659a.tar.xz
Docker packaging should not su-exec or chmod if already running as UID/GID (#5970)
Adjust su-exec to only be used if needed.

If UID == getuid() and GID == getgid() then we do not need to su-exec, and chmod will not work.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/5970.docker1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5970.docker b/changelog.d/5970.docker
new file mode 100644
index 0000000000..c9d04da9cd
--- /dev/null
+++ b/changelog.d/5970.docker
@@ -0,0 +1 @@
+Avoid changing UID/GID if they are already correct.