mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 16:21:50 -04:00
25 lines
505 B
Bash
25 lines
505 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: google_instance_setup
|
|
# BEFORE: LOGIN
|
|
# REQUIRE: NETWORKING syslogd
|
|
#
|
|
# google_instance_setup_enable (bool): Set to NO by default.
|
|
# Set it to YES to enable google_instance_setup.
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="google_instance_setup"
|
|
rcvar="google_instance_setup_enable"
|
|
stop_cmd=":"
|
|
|
|
load_rc_config "${name}"
|
|
|
|
: ${google_instance_setup_enable:="NO"}
|
|
|
|
command_interpreter="%%PYTHON_CMD%%"
|
|
command=%%PREFIX%%/bin/${name}-%%PYTHON_VER%%
|
|
pidfile=/var/run/${name}.pid
|
|
|
|
run_rc_command "$1"
|