mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
This change adds 2 tests to make sure that the *_oomprotect variable sets the protection against OOM killer properly within rc(8) scripts. This is also adding the first tests for the rc(8) framework. More tests will be added as we go. PR: 256148 Approved by: des MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D35745
30 lines
608 B
Makefile
30 lines
608 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CONFGROUPS= CONFETC CONFETCEXEC CONFETCDEFAULTS
|
|
CONFETCDIR= /etc
|
|
CONFETC= network.subr rc rc.initdiskless rc.subr rc.shutdown rc.bsdextended
|
|
CONFETCPACKAGE= rc
|
|
|
|
.if ${MK_IPFW} != "no"
|
|
CONFETC+= rc.firewall
|
|
.endif
|
|
.if ${MK_SENDMAIL} != "no"
|
|
CONFETC+= rc.sendmail
|
|
.endif
|
|
CONFETCMODE= 644
|
|
CONFETCEXEC= netstart pccard_ether rc.resume rc.suspend
|
|
CONFETCEXECDIR= /etc
|
|
CONFETCEXECMODE= 755
|
|
CONFETCEXECPACKAGE= rc
|
|
CONFETCDEFAULTSDIR= /etc/defaults
|
|
CONFETCDEFAULTS= rc.conf
|
|
CONFETCDEFAULTSPACKAGE= rc
|
|
|
|
SUBDIR+= rc.d
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|