ports/sysutils/py-google-compute-engine/files/google_network_daemon.in
Xin LI 592b450ab9 sysutils/py-google-compute-engine: revive port
This reverts commit 5a7ff5102154b08055c37868810192a9dca8044b and uses
www/py-boto3 instead of the removed devel/py-boto, and releng-gce@
assumes maintainership.

This is meant to be a temporary measure as we are exploring alternatives
for GCE support.

MFH:	2025Q2
2025-05-08 22:19:57 -07:00

33 lines
727 B
Bash

#!/bin/sh
# PROVIDE: google_network_daemon
# BEFORE: LOGIN
# REQUIRE: NETWORKING syslogd google_instance_setup google_network_daemon
# KEYWORD: shutdown
#
# google_network_daemon_enable (bool): Set to NO by default.
# Set it to YES to enable google_network_daemon.
#
. /etc/rc.subr
name="google_network_daemon"
rcvar="google_network_daemon_enable"
load_rc_config "${name}"
: ${google_network_daemon_enable:="NO"}
command_interpreter="%%PYTHON_CMD%%"
command=%%PREFIX%%/bin/${name}-%%PYTHON_VER%%
pidfile=/var/run/${name}.pid
start_cmd="google_network_daemon_start"
google_network_daemon_start()
{
check_startmsgs && echo "Starting ${name}."
daemon -p ${pidfile} -t ${name} ${command}
}
run_rc_command "$1"