mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
Reviewed by: lwhsu Approved by: lwhsu (src) MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D34589
19 lines
301 B
Bash
Executable file
19 lines
301 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# PROVIDE: ggated
|
|
# REQUIRE: NETWORKING
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ggated"
|
|
desc="GEOM Gate network daemon"
|
|
rcvar="ggated_enable"
|
|
command="/sbin/${name}"
|
|
pidfile="/var/run/${name}.pid"
|
|
|
|
load_rc_config $name
|
|
required_files="${ggated_config}"
|
|
|
|
command_args="${ggated_config}"
|
|
|
|
run_rc_command "$1"
|