2015-03-31 12:48:45 -05:00
|
|
|
#!@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
|
2015-04-28 21:03:49 -04:00
|
|
|
keyword -openvz -prefix -systemd-nspawn -vserver -lxc
|
2015-03-31 12:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
start()
|
|
|
|
{
|
|
|
|
ebegin "Loading custom binary format handlers"
|
|
|
|
"$RC_LIBEXECDIR"/sh/binfmt.sh
|
|
|
|
eend $?
|
2015-08-09 23:17:19 -04:00
|
|
|
return 0
|
2015-03-31 12:48:45 -05:00
|
|
|
}
|