ports/archivers/urbackup-client/files/urbackup_client.in
2021-04-06 16:31:13 +02:00

28 lines
617 B
Bash

#!/bin/sh
# PROVIDE: urbackup_client
# REQUIRE: LOGIN
# KEYWORD: shutdown
#
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
# to enable this service:
#
# urbackup_client_enable (bool): Set to NO by default.
# Set it to YES to enable the UrBackup Client Backend.
. /etc/rc.subr
name=urbackup_client
desc="UrBackup Client Backend"
rcvar=urbackup_client_enable
load_rc_config $name
: ${urbackup_client_enable:=NO}
command=%%PREFIX%%/sbin/urbackupclientbackend
pidfile=/var/run/urbackupclientbackend.pid
command_args="-d -w $pidfile -c %%PREFIX%%/etc/urbackup/urbackupclient.conf"
run_rc_command "$1"