matrix: start script to retrieve server version
This commit is contained in:
parent
3a0f802e9c
commit
893973aa62
1 changed files with 14 additions and 0 deletions
14
matrix/get-server-version.sh
Normal file
14
matrix/get-server-version.sh
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
# 2026-08-29, Nico Schottelius
|
||||
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo $0 matrix-server-or-domain
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fqdn=$1; shift
|
||||
|
||||
|
||||
path_version=$fqdn/_synapse/admin/v1/server_version
|
||||
path_well_known=$fqdn/.well-known/matrix/client
|
||||
Loading…
Add table
Add a link
Reference in a new issue