freebsd-ports/sysutils/py-google-compute-engine/files/google_instance_setup.in
Steve Wills d4dac52370 sysutils/py-google-compute-engine: fix daemons in python 2.7 case
PR:		237845
Reviewed by:	koobs
Approved by:	implicit (portmgr, python, jfi blanket)
MFH:		2019Q2
2019-05-13 10:05:26 +00:00

27 lines
519 B
Bash

#!/bin/sh
# $FreeBSD$
#
# 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"