mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 18:43:29 +00:00
14 lines
343 B
Bash
Executable File
14 lines
343 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f /usr/local/etc/dendrite.yaml ]; then
|
|
cp /usr/local/share/dendrite-config.yaml /usr/local/etc/dendrite.yaml
|
|
fi
|
|
|
|
if [ ! -f /usr/local/etc/matrix_key.pem ]; then
|
|
/usr/local/bin/generate-keys --private-key /usr/local/etc/matrix_key.pem
|
|
fi
|
|
|
|
/usr/local/bin/dendrite-monolith-server --config /usr/local/etc/dendrite.yaml
|
|
|
|
|