pflogd revision 1.2
1#!/bin/sh
2#
3# $OpenBSD: pflogd,v 1.2 2011/07/08 21:42:52 robert Exp $
4
5daemon="/sbin/pflogd"
6
7. /etc/rc.d/rc.subr
8
9pexp="pflogd: \[priv\]"
10
11rc_pre() {
12	if pfctl -si | grep -q Enabled; then
13		ifconfig pflog0 create
14		if ifconfig pflog0; then
15			ifconfig pflog0 up
16		else
17			return 1
18		fi
19	else
20		return 1
21	fi
22}
23
24rc_cmd $1
25