forked from extern/shorewall_code
Update Documentation in compiler.pl
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6534 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
8ef47a15af
commit
8eac917057
@ -21,7 +21,25 @@
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA
|
||||
#
|
||||
# See usage() function below for command line syntax.
|
||||
# Usage:
|
||||
#
|
||||
# compiler.pl [ <option> ... ] [ <filename> ]
|
||||
#
|
||||
# Options:
|
||||
#
|
||||
# --export # Compile for export
|
||||
# --verbosity=<number> # Set VERBOSITY
|
||||
# --directory=<directory> # Directory where configuration resides (default is /etc/shorewall)
|
||||
# --timestamp # Timestamp all progress messages
|
||||
#
|
||||
# Default values for compiler options are given in environmental variables as follows:
|
||||
#
|
||||
# Option Variable
|
||||
#
|
||||
# --verbosity VERBOSE
|
||||
# --export EXPORT
|
||||
# --directory SHOREWALL_DIR
|
||||
# --timestamp TIMESTAMP
|
||||
#
|
||||
use strict;
|
||||
use lib '/usr/share/shorewall-perl';
|
||||
@ -34,7 +52,7 @@ sub usage() {
|
||||
}
|
||||
|
||||
#
|
||||
# E x e c u t i o n S t a r t s H e r e
|
||||
# E x e c u t i o n B e g i n s H e r e
|
||||
#
|
||||
my $export = $ENV{EXPORT} || 0;
|
||||
my $shorewall_dir = $ENV{SHOREWALL_DIR} || '';
|
||||
|
Loading…
Reference in New Issue
Block a user