blob: f9c0237b45c51c2e96b57c77e70921114241513f (
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
|
#!/bin/sh
# $FreeBSD$
#
# PROVIDE: google_network_setup
# BEFORE: LOGIN
# REQUIRE: NETWORKING syslogd google_instance_setup
#
# google_network_setup_enable (bool): Set to NO by default.
# Set it to YES to enable google_network_setup.
#
. /etc/rc.subr
name="google_network_setup"
rcvar="google_network_setup_enable"
load_rc_config "${name}"
: ${google_network_setup_enable:="NO"}
command_interpreter="%%PYTHON_CMD%%"
command=%%PREFIX%%/bin/${name}
pidfile=/var/run/${name}.pid
run_rc_command "$1"
|