mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
11 lines
240 B
Bash
11 lines
240 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -e etc/synapse/homeserver.yaml ]; then
|
|
python3 -m synapse.app.homeserver \
|
|
--server-name my.domain.name \
|
|
--config-path /etc/synapse/homeserver.yaml \
|
|
--generate-config \
|
|
--report-stats=yes 2>/dev/null
|
|
fi
|
|
|
|
exit 0
|