From 6d76ed56a022c04a7b3c9856090c98239f36eb4e Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Sat, 11 Aug 2018 13:58:26 +0000 Subject: [PATCH] Move pf.os to sbin/pfctl/ Approved by: will (mentor) Glanced at by: kp Sponsored by: Essen Hackathon Differential Revision: https://reviews.freebsd.org/D16557 --- etc/Makefile | 4 ---- sbin/pfctl/Makefile | 1 + {etc => sbin/pfctl}/pf.os | 0 3 files changed, 1 insertion(+), 4 deletions(-) rename {etc => sbin/pfctl}/pf.os (100%) diff --git a/etc/Makefile b/etc/Makefile index d48538d9e10f..72d855698ee4 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -93,10 +93,6 @@ SSH= ${SRCTOP}/crypto/openssh/ssh_config \ SSL= ${SRCTOP}/crypto/openssl/apps/openssl.cnf .endif -.if ${MK_PF} != "no" -BIN1+= pf.os -.endif - .if ${MK_SENDMAIL} != "no" BIN1+= rc.sendmail .endif diff --git a/sbin/pfctl/Makefile b/sbin/pfctl/Makefile index de1f64dd0269..8ca3b5d86285 100644 --- a/sbin/pfctl/Makefile +++ b/sbin/pfctl/Makefile @@ -6,6 +6,7 @@ .PATH: ${SRCTOP}/sys/netpfil/pf PACKAGE=pf +CONFS= pf.os PROG= pfctl MAN= pfctl.8 diff --git a/etc/pf.os b/sbin/pfctl/pf.os similarity index 100% rename from etc/pf.os rename to sbin/pfctl/pf.os