Much of the core bits are initially ported.

This should be mostly independent of my configs, now.
This commit is contained in:
2026-05-09 03:26:53 -04:00
parent 6b02d9d58e
commit 4d30691ee6
16 changed files with 1278 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/bin/sh
if [ -z "${rc_router_dir}" ]
then
echo "Unable to proceed -- rc_router_dir is not set." >& /dev/fd/2
echo "You must set this variable before sourcing `rc.router/rc.entry`" >& /dev/fd/2
exit 254
fi
if [ -z "${rc_router_conf_dir}" ]
then
echo "Unable to proceed -- rc_router_conf_dir is not set." >& /dev/fd/2
echo "You must set this variable before sourcing `rc.router/rc.entry`" >& /dev/fd/2
exit 254
fi
. ${rc_router_dir}/rc.subr
. ${rc_router_dir}/defaults/rc.conf
. ${rc_router_conf_dir}/rc.conf
_rc_router_epilogue
# vim: ft=bash