Add OpenRC example scripts

This commit is contained in:
Thomas Kienlen 2022-01-15 10:41:41 +01:00 committed by Naim A
parent 85a94fbb73
commit c64c98c1ee
2 changed files with 25 additions and 0 deletions

20
contrib/OpenRC/udpt.initd Normal file
View file

@ -0,0 +1,20 @@
#!/sbin/openrc-run
description="UDP bittorrent Tracker"
supervisor=supervise-daemon
command=/usr/bin/udpt
command_args="-c /etc/udpt.conf"
command_user="udpt:udpt"
output_log=/var/log/$RC_SVCNAME.log
stopsig="SIGINT"
depend() {
need net
}
start_pre() {
checkpath --directory --owner $command_user --mode 0775 \
/var/lib/$RC_SVCNAME
checkpath --file --owner $command_user --mode 0644 \
/var/log/$RC_SVCNAME.log
}

View file

@ -0,0 +1,5 @@
#!/bin/sh
addgroup -S udpt 2>/dev/null
adduser -S -D -H -h /dev/null -s /sbin/nologin -g udpt udpt 2>/dev/null
exit 0