mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 02:27:10 +02:00
20 lines
490 B
Bash
20 lines
490 B
Bash
#!/sbin/openrc-run
|
|
supervisor=supervise-daemon
|
|
|
|
name="mautrix-bluesky"
|
|
description="Daemon for mautrix-bluesky, a Matrix-Bluesky puppeting bridge"
|
|
|
|
: ${config:="/etc/mautrix-bluesky/config.yaml"}
|
|
: ${command_user:="mautrix-bluesky:mautrix-bluesky"}
|
|
|
|
command="/usr/bin/mautrix-bluesky"
|
|
command_args="-c $config $command_args"
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --file --owner "$command_user" "$config"
|
|
checkpath --directory --owner "$command_user" /var/log/mautrix-bluesky
|
|
}
|