aboutsummaryrefslogtreecommitdiff
path: root/init.d/binfmt.in
blob: 46e2220901538887cce3e483bb72187a25d9bab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!@SBINDIR@/openrc-run
# Copyright 2015 William Hubbs <w.d.hubbs@gmail.com>
# Released under the 2-clause BSD license.

description="Register misc binary format handlers"

depend()
{
	after procfs
	use modules devfs
	keyword -openvz -prefix -systemd-nspawn -vserver -lxc
}

start()
{
	ebegin "Loading custom binary format handlers"
	"$RC_LIBEXECDIR"/sh/binfmt.sh
	eend $?
	return 0
}