blob: 2a71408147296504d26b0e4f18e2555536f065ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: p4d
# REQUIRE: LOGIN
# KEYWORD: shutdown
# These variables (and many more) can be set via environment variables. Check
# p4d -h for what you can set.
#
# Add the following line to /etc/rc.conf to enable p4d:
# p4d_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable p4d.
# p4d_root (str): Default to "%%P4ROOT%%".
# Base database directory.
# p4d_port (int): Default to "1666".
# Set to TCP port to bind to.
# p4d_debug (str): Default to "server=3".
# Debug options. Highly recommended.
# p4d_log (str): Default to "%%P4LOG%%".
# Logfile for debug output.
# p4d_args (str): Custom additional arguments to be passed
# to p4d (default empty).
#
. /etc/rc.subr
name="p4d"
rcvar=p4d_enable
load_rc_config $name
: ${p4d_enable="NO"}
: ${p4d_root="%%P4ROOT%%"}
: ${p4d_port="1666"}
: ${p4d_debug="server=3"}
: ${p4d_log="%%P4LOG%%"}
command="%%PREFIX%%/sbin/p4d"
command_args="-r ${p4d_root} -p ${p4d_port} -v ${p4d_debug} -L ${p4d_log} -d ${p4d_args} > /dev/null 2>&1 &"
p4d_user="p4admin"
start_precmd="p4d_prestart"
p4d_prestart()
{
if [ ! -f "${p4d_log}" ]; then
install -o p4admin -g p4admin -m 0640 /dev/null ${p4d_log}
fi
}
run_rc_command "$1"
|