aed7fb3 procd: fix compilation with uClibc-ng 9d0f831 jail: fix segfault with len(uidmap/gidmap) > 1 42a6217 jail: consider PATH for argv in OCI container 83f4b72 jail: actually chdir into OCI defined CWD fc9f614 jail: parse and run OCI hooks 02eec92 jail: memory allocation fixes 71e75f4 jail: refactor mount support to cover OCI spec b586e7d jail: don't make mount source read-only dacab12 uxc: fix 'stop' command Signed-off-by: Daniel Golle <daniel@makrotopia.org>
19 lines
251 B
Bash
19 lines
251 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=99
|
|
USE_PROCD=1
|
|
NAME=uxc
|
|
PROG=/sbin/uxc
|
|
|
|
start_service() {
|
|
[ "${__BOOT_UXC}" = "1" ] || return 0
|
|
procd_open_instance "uxc"
|
|
procd_set_param command "$PROG" boot
|
|
procd_close_instance
|
|
}
|
|
|
|
boot() {
|
|
__BOOT_UXC=1
|
|
start
|
|
}
|