Add FreeBSD rc script for running the demo

This commit is contained in:
Reynir Björnsson 2024-09-17 11:36:54 +02:00
parent 317ab54220
commit ead3b41dff

29
misc/rc.d/webauthn_demo Executable file
View file

@ -0,0 +1,29 @@
#!/bin/sh
. /etc/rc.subr
name="webauthn_demo"
title="webauthn-demo"
rcvar="${name}_enable"
pidfile="/var/run/${name}/${name}.pid"
# Change this if you place the demo binary elsewhere
exec_path="/home/builder/webauthn/${name}.exe"
start_precmd="webauthn_demo_precmd"
load_rc_config "$name"
: ${webauthn_demo_enable:="NO"}
: ${webauthn_demo_user:="builder"}
webauthn_demo_precmd () {
# Create the parent directory for the pidfile with owner
# ${webauthn_demo_user} as daemon(8) will not have permissions for /var/run/
install -d -o "${webauthn_demo_user}" "/var/run/${name}"
}
command="/usr/sbin/daemon"
command_args="-r -S -t ${title} -P ${pidfile} ${exec_path}"
run_rc_command "$1"