xref: /freebsd-13.1/libexec/rc/rc.d/archdep (revision 405c3050)
1#!/bin/sh
2#
3# $FreeBSD$
4#
5
6# PROVIDE: archdep
7# REQUIRE: mountcritremote
8# KEYWORD: nojail
9
10. /etc/rc.subr
11
12name="archdep"
13start_cmd="archdep_start"
14stop_cmd=":"
15
16archdep_start()
17{
18	local _arch
19
20	_arch=`${SYSCTL_N} hw.machine_arch`
21	case $_arch in
22	esac
23}
24
25load_rc_config $name
26run_rc_command "$1"
27