mirror of
https://github.com/void-linux/void-packages.git
synced 2025-09-25 21:25:11 +02:00
7 lines
235 B
Bash
Executable file
7 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
[ -r ./conf ] && . ./conf
|
|
ulimit -n ${MAX_OPEN_FILES:-65535}
|
|
cd /var/lib/dendrite || exit 1
|
|
exec 2>&1
|
|
exec chpst -u _dendrite:_dendrite dendrite-monolith-server \
|
|
--config ${CONFIG_FILE:-/etc/dendrite/dendrite.yaml} ${OPTS}
|