4d30691ee6
This should be mostly independent of my configs, now.
12 lines
265 B
Bash
12 lines
265 B
Bash
#!/bin/sh
|
|
|
|
# This emulates a minimal `/etc/rc.conf` that one would create in FreeBSD to
|
|
# hand off control to `rc.router`.
|
|
|
|
rc_router_dir="${RC_ROUTER_HARNESS}/.."
|
|
rc_router_conf_dir="${RC_ROUTER_HARNESS}/../test-conf/"
|
|
|
|
. ${rc_router_dir}/rc.entry
|
|
|
|
# vim: ft=bash
|