]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rc/rc.d/archdep
Destroy cloned interfaces at netif stop, netif restart and shutdown.
[FreeBSD/FreeBSD.git] / libexec / rc / rc.d / archdep
1 #!/bin/sh
2 #
3 # $FreeBSD$
4 #
5
6 # PROVIDE: archdep
7 # REQUIRE: mountcritremote
8 # KEYWORD: nojail
9
10 . /etc/rc.subr
11
12 name="archdep"
13 start_cmd="archdep_start"
14 stop_cmd=":"
15
16 archdep_start()
17 {
18         local _arch
19
20         _arch=`${SYSCTL_N} hw.machine_arch`
21         case $_arch in
22         esac
23 }
24
25 load_rc_config $name
26 run_rc_command "$1"