ad765da4e8
The given parameter may either be a jid, jail name, or a BE name. In all cases, the parameter will be resolved to a jid and bectl(8) will sanity-check that there's actually a BE mounted at the requested jail root before invoking jail_remove(2).
16 lines
252 B
Makefile
16 lines
252 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= bectl
|
|
MAN= bectl.8
|
|
|
|
LIBADD+= be
|
|
LIBADD+= jail
|
|
LIBADD+= nvpair
|
|
|
|
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/lib/libzfs/common
|
|
CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris
|
|
|
|
CFLAGS+= -DNEED_SOLARIS_BOOLEAN
|
|
|
|
.include <bsd.prog.mk>
|