diff options
author | Michael Kaye <1917473+michaelkaye@users.noreply.github.com> | 2019-09-03 16:36:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 16:36:01 +0100 |
commit | 894c1a575979a52114fac09ab3814f4fe023659a (patch) | |
tree | e5eceb39dca1849899a2a14aec5d0847305934ea /changelog.d | |
parent | Ensure an auth instance is available to ListMediaInRoom (#5967) (diff) | |
download | synapse-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.docker | 1 |
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. |