summaryrefslogtreecommitdiff
path: root/net/bounce/files/bounce.in
blob: 6d28475a314193a07d38530a2ff39872eeeae75e (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
#!/bin/sh
#
# $FreeBSD$
#
#
# PROVIDE: bounce
# REQUIRE: NETWORKING
#
# Add the following line to /etc/rc.conf to enable bounce
#
# bounce_enable (bool):			Set to "NO" by default.
#					Set it to "YES" to enable bounce.
# bounce_connections (str):		Name for each bounce connection.
# bounce_connectionname_options (str):	Commandline for each bounce connection.
#

. /etc/rc.subr

name="bounce"
rcvar=bounce_enable

load_rc_config $name

: ${bounce_enable="NO"}

command="%%PREFIX%%/sbin/${name}"
start_cmd="bounce_startcmd"

bounce_startcmd()
{
    if [ -z "$rc_fast" -a -n "$rc_pid" ]; then
	echo "${name} already running? (pid=$rc_pid)."
	return 1
    fi
    if [ -z "${bounce_connections}" ]; then
	err 1 "can't find bounce_connections in /etc/rc.conf"
    fi	
    echo Starting ${name}.
    for connection in ${bounce_connections}; do
	eval options=\$bounce_${connection}_options
	if [ -z "${options}" ]; then
	    continue
	fi
	cmd="${command} ${options}"
	if [ -n "$bounce_user" ]; then
	    cmd="su -m $bounce_user -c '$cmd'"
	fi
	eval "$cmd"
	done
}

run_rc_command "$1"