Hi Josh, > On Apr 5, 2015, at 10:09, Josh Paetzel <jpaet...@freebsd.org> wrote: > > Author: jpaetzel > Date: Sun Apr 5 17:09:58 2015 > New Revision: 281112 > URL: https://svnweb.freebsd.org/changeset/base/281112 > > Log: > Bug fixes and feature adds > > - Remove extranious echo that breaks puppet > - Handle restarts of multiple pflog devices correctly > - Add the ability to perform actions on specific pflog devices. > > PR: 199150 > Submitted by: jason.unovi...@gmail.com > MFC after: 3 days > > Modified: > head/etc/rc.d/pflog > > Modified: head/etc/rc.d/pflog > ============================================================================== > --- head/etc/rc.d/pflog Sun Apr 5 16:35:13 2015 (r281111) > +++ head/etc/rc.d/pflog Sun Apr 5 17:09:58 2015 (r281112) > @@ -24,30 +24,30 @@ pflog_prestart() > { > load_kld pflog || return 1 > > + # create pflog_dev interface if needed > + if ! ifconfig $pflog_dev > /dev/null 2>&1; then > + if ! ifconfig $pflog_dev create; then > + warn "could not create $pflog_dev." > + return 1 > + fi > + fi
Is a character device created for pflog? > + > # set pflog_dev interface to up state > if ! ifconfig $pflog_dev up; then > warn "could not bring up $pflog_dev." > return 1 > fi > > + # -p flag requires striping pidfile's leading /var/run and trailing .pid > + pidfile=$(echo $pidfile | sed -e 's|/var/run/||' -e 's|.pid$||') > + Could this use pgrep with a custom pidfile? Thanks! _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"