freebsd-dev/libexec/rc/rc.d/archdep
Mateusz Guzik 405c3050f1 Remove iBCS2, part1: userspace
iBCS2 was disconnected from the build in 2015 (see r291419)

bsdconfig parts submitted by dteske.

Reviewed by:	kib (previous version)
Sponsored by:	The FreeBSD Foundation
2018-12-19 21:56:54 +00:00

27 lines
298 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: archdep
# REQUIRE: mountcritremote
# KEYWORD: nojail
. /etc/rc.subr
name="archdep"
start_cmd="archdep_start"
stop_cmd=":"
archdep_start()
{
local _arch
_arch=`${SYSCTL_N} hw.machine_arch`
case $_arch in
esac
}
load_rc_config $name
run_rc_command "$1"