mautrix-whatsapp-0.10.9.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Manuel Friedli 2024-08-25 14:43:38 +02:00
parent b1cdc5f6d8
commit 4dc25b4995
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
5 changed files with 127 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#!/sbin/openrc-run
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="mautrix-whatsapp daemon"
description="A Matrix-WhatsApp puppeting bridge"
module="mautrix_whatsapp"
pidfile="/run/${RC_SVCNAME}.pid"
command="/usr/bin/mautrix-whatsapp"
command_args="-c /etc/mautrix/${module}.yaml -r /var/lib/mautrix/whatsapp/registration.yaml"
command_background=true
command_user="mautrix-whatsapp:mautrix"
output_log="/var/log/mautrix/mautrix-whatsapp_daemon.log"
error_log="/var/log/mautrix/mautrix-whatsapp_daemon.log"
depend() {
need net
}
start_pre() {
checkpath -d -m 0755 -o "$command_user" /var/lib/mautrix/whatsapp
checkpath -f -m 0644 -o "$command_user" "$output_log"
}

View file

@ -0,0 +1,12 @@
[Unit]
Description=A Matrix-WhatsApp puppeting bridge
After=network.target
[Service]
User=mautrix-whatsapp
Group=mautrix
Restart=on-failure
ExecStart=/usr/bin/mautrix-whatsapp -c /etc/mautrix/mautrix_whatsapp.yaml -r /var/lib/mautrix/whatsapp/registration.yaml
[Install]
WantedBy=multi-user.target