<<

NAME

pfcmd grammar

DESCRIPTION

bin/pfcmd command-line parser. It is not used directly, we precompile it in advance so it's faster to load.

NOTE: always remember that this file is only part of the story, lib/pf/pfcmd.pm is always parsed first!

MANUAL PRECOMPILE

The grammar is usually compiled by the RPM install process however if you do any modifications on your own you might want to precompile it again youself.

To do so, from /usr/local/pf/, run:

  /usr/bin/perl -w -e "use strict; use warnings; use Parse::RecDescent; use lib \"./lib\"; use pf::pfcmd::pfcmd; Parse::RecDescent->Precompile(\$grammar, \"pfcmd_pregrammar\");"

Then put the resulting pfcmd_pregrammar.pm file in /usr/local/pf/lib/pf/pfcmd/

For more information about the grammar syntax: http://search.cpan.org/~dconway/Parse-RecDescent-1.96.0/lib/Parse/RecDescent.pm#DESCRIPTION

AUTHOR

Inverse inc. <info@inverse.ca>

Minor parts of this file may have been contributed. See CREDITS.

COPYRIGHT

Copyright (C) 2005-2015 Inverse inc.

Copyright (C) 2005 Kevin Amorin

Copyright (C) 2005 David LaPorte

LICENSE

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

<<