From 162a1148dd5b4edcf8f49ca3584e89e08b6d05cb Mon Sep 17 00:00:00 2001 From: manu Date: Wed, 22 May 2019 07:21:05 +0000 Subject: [PATCH] pkgbase: Move rc.firewall to libexec/rc Put it with all the other rc files Reviewed by: bapt --- etc/Makefile | 1 - libexec/rc/Makefile | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/etc/Makefile b/etc/Makefile index ee8b2dd6ee5..5ed2414a0d4 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -17,7 +17,6 @@ SUBDIR+=sendmail BIN1= \ login.access \ rc.bsdextended \ - rc.firewall \ termcap.small # NB: keep these sorted by MK_* knobs diff --git a/libexec/rc/Makefile b/libexec/rc/Makefile index 2e28f86153f..c3af2fd6232 100644 --- a/libexec/rc/Makefile +++ b/libexec/rc/Makefile @@ -1,8 +1,13 @@ # $FreeBSD$ +.include + CONFGROUPS= CONFETC CONFETCEXEC CONFETCDEFAULTS CONFETCDIR= /etc CONFETC= network.subr rc rc.initdiskless rc.subr rc.shutdown +.if ${MK_IPFW} != "no" +CONFETC+= rc.firewall +.endif CONFETCMODE= 644 CONFETCEXEC= netstart pccard_ether rc.resume rc.suspend CONFETCEXECDIR= /etc -- 2.45.0