diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-03-27 03:50:17 -0300 |
---|---|---|
committer | marcelloc <marcellocoutinho@gmail.com> | 2012-03-27 03:50:17 -0300 |
commit | f676bf571dcac87e637bebf01cea634c53ffc0f3 (patch) | |
tree | 60332381905b7397c7a04b6f2b1c898fba2f441b /config/sarg/sarg.php | |
parent | 67c822586a90f9e0f9c3801522d7f35a103ffcbe (diff) | |
download | pfsense-packages-f676bf571dcac87e637bebf01cea634c53ffc0f3.tar.gz pfsense-packages-f676bf571dcac87e637bebf01cea634c53ffc0f3.tar.bz2 pfsense-packages-f676bf571dcac87e637bebf01cea634c53ffc0f3.zip |
sarg - first files
Diffstat (limited to 'config/sarg/sarg.php')
-rw-r--r-- | config/sarg/sarg.php | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/config/sarg/sarg.php b/config/sarg/sarg.php new file mode 100644 index 00000000..c2ec00c2 --- /dev/null +++ b/config/sarg/sarg.php @@ -0,0 +1,46 @@ +<?php +/* $Id$ */ +/* ========================================================================== */ +/* + sarg.php + part of pfSense (http://www.pfSense.com) + Copyright (C) 2012 Marcello Coutinho + + All rights reserved. +*/ +/* ========================================================================== */ +/* + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + */ +/* ========================================================================== */ + +require_once("/etc/inc/util.inc"); +require_once("/etc/inc/functions.inc"); +require_once("/etc/inc/pkg-utils.inc"); +require_once("/etc/inc/globals.inc"); +require_once("/usr/local/pkg/sarg.inc"); + +if (preg_match ("/(\d+)/",$argv[1],$matches)) + run_sarg($matches[1]); + + +?>
\ No newline at end of file |