Quiero agregar un servicio a mi sistema Linux Artix, que es un derivado de Arch Linux con OpenRC como sistema init.
Considere el servicio systemd
[Unit]
Description=sets battery thresholds
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/bin/tpacpi-bat -s ST 0 40
ExecStart=/usr/bin/tpacpi-bat -s SP 0 80
ExecStop=/usr/bin/tpacpi-bat -s ST 0 0
ExecStop=/usr/bin/tpacpi-bat -s SP 0 0
[Install]
WantedBy=multi-user.target
¿Cómo convierto esto en openrc? ¿Debería colocarse para que pueda agregarlo a través de rc-service {service-name} start
?