[matrix-synapse] Fix typo in `$os` matches.

This commit is contained in:
sparrowhawk 2021-07-06 14:59:30 +02:00
parent 5102fe466e
commit 2ce8223fa7
No known key found for this signature in database
GPG Key ID: 6778C9C29C02D691
1 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@
# #
# OS-specific configuration. # OS-specific configuration.
os=$(cat "$__global/explorer/os") os=$(cat "${__global:?}/explorer/os")
case "$os" in case "$os" in
debian) debian)
@ -56,7 +56,7 @@ esac
# Small helper used to get boolean values which can be used as-is in the # Small helper used to get boolean values which can be used as-is in the
# configuration template. # configuration template.
get_boolean_for () { get_boolean_for () {
if [ -f "$__object/parameter/${1:?}" ]; then if [ -f "${__object:?}/parameter/${1:?}" ]; then
echo 'true' echo 'true'
else else
echo 'false' echo 'false'
@ -293,7 +293,7 @@ esac
# Install OS packages. We have a bit of boilerplate to handle the debian case. # Install OS packages. We have a bit of boilerplate to handle the debian case.
synapse_req= synapse_req=
if [ "$os" = "Debian" ]; then if [ "$os" = "debian" ]; then
require="__apt_source/matrix-org" __package_apt "$synapse_pkg" require="__apt_source/matrix-org" __package_apt "$synapse_pkg"
synapse_req="__package_apt/$synapse_pkg" synapse_req="__package_apt/$synapse_pkg"
else else
@ -302,7 +302,7 @@ else
fi fi
if [ -n "$ENABLE_LDAP_AUTH" ]; then if [ -n "$ENABLE_LDAP_AUTH" ]; then
if [ "$os" = "Debian" ]; then if [ "$os" = "debian" ]; then
require="__apt_source/matrix-org" __package_apt "$ldap_auth_provider_pkg" require="__apt_source/matrix-org" __package_apt "$ldap_auth_provider_pkg"
else else
__package "$ldap_auth_provider_pkg" __package "$ldap_auth_provider_pkg"