|
From: Martijn <wa...@we...> - 2004-06-12 12:18:13
|
wasted 2004/06/12 04:10:31 PDT
Modified files:
. configure configure.in
wstats.conf.example
Log:
Add RRDGraph functionality, bump version.
Revision Changes Path
1.3 +11 -11 wStats/configure
1.3 +2 -2 wStats/configure.in
1.2 +16 -0 wStats/wstats.conf.example
Index: configure
===================================================================
RCS file: /home/cvs/wstats/wStats/configure,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- configure 18 Jan 2004 16:59:16 -0000 1.2
+++ configure 12 Jun 2004 11:10:30 -0000 1.3
@@ -1,7 +1,7 @@
#! /bin/sh
-# From configure.in Id: configure.in,v 1.1.1.1 2003/12/13 13:36:19 wasted Exp .
+# From configure.in Id: configure.in,v 1.2 2004/01/18 16:59:16 wasted Exp .
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.57 for wstats 1.1.
+# Generated by GNU Autoconf 2.57 for wstats 1.2.
#
# Report bugs to <wst...@li...>.
#
@@ -269,8 +269,8 @@
# Identity of this package.
PACKAGE_NAME='wstats'
PACKAGE_TARNAME='wstats'
-PACKAGE_VERSION='1.1'
-PACKAGE_STRING='wstats 1.1'
+PACKAGE_VERSION='1.2'
+PACKAGE_STRING='wstats 1.2'
PACKAGE_BUGREPORT='wst...@li...'
ac_unique_file="src/statserv.c"
@@ -788,7 +788,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures wstats 1.1 to adapt to many kinds of systems.
+\`configure' configures wstats 1.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -855,7 +855,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of wstats 1.1:";;
+ short | recursive ) echo "Configuration of wstats 1.2:";;
esac
cat <<\_ACEOF
@@ -954,7 +954,7 @@
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-wstats configure 1.1
+wstats configure 1.2
generated by GNU Autoconf 2.57
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
@@ -969,7 +969,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by wstats $as_me 1.1, which was
+It was created by wstats $as_me 1.2, which was
generated by GNU Autoconf 2.57. Invocation command line was
$ $0 $@
@@ -1649,7 +1649,7 @@
# Define the identity of the package.
PACKAGE=wstats
- VERSION=1.1
+ VERSION=1.2
cat >>confdefs.h <<_ACEOF
@@ -8157,7 +8157,7 @@
} >&5
cat >&5 <<_CSEOF
-This file was extended by wstats $as_me 1.1, which was
+This file was extended by wstats $as_me 1.2, which was
generated by GNU Autoconf 2.57. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -8220,7 +8220,7 @@
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-wstats config.status 1.1
+wstats config.status 1.2
configured by $0, generated by GNU Autoconf 2.57,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
Index: configure.in
===================================================================
RCS file: /home/cvs/wstats/wStats/configure.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- configure.in 18 Jan 2004 16:59:16 -0000 1.2
+++ configure.in 12 Jun 2004 11:10:31 -0000 1.3
@@ -1,6 +1,6 @@
-AC_REVISION([$Id: configure.in,v 1.2 2004/01/18 16:59:16 wasted Exp $])
+AC_REVISION([$Id: configure.in,v 1.3 2004/06/12 11:10:31 wasted Exp $])
AC_PREREQ(2.53)
-AC_INIT(wstats, 1.1, wst...@li...)
+AC_INIT(wstats, 1.2, wst...@li...)
AM_CONFIG_HEADER(src/config.h)
AC_CONFIG_SRCDIR(src/statserv.c)
Index: wstats.conf.example
===================================================================
RCS file: /home/cvs/wstats/wStats/wstats.conf.example,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- wstats.conf.example 13 Dec 2003 13:36:21 -0000 1.1
+++ wstats.conf.example 12 Jun 2004 11:10:31 -0000 1.2
@@ -62,6 +62,22 @@
"history_interval" "1d";
};
+// RRDTool graphs
+"rrdgraphs" {
+ // is this module active?
+ "active" "1";
+ // where should wStats put your graph files/rrd file?
+ "output_dir" "/home/services/public_html";
+ // how often do we update them?
+ "graph_update" "5m";
+ // Where is the RRTool located?
+ "rrd_path" "/usr/local/bin/rrdtool";
+ // your network name?
+ "servername" "Irc.WhatNET.Org";
+ // don't process the local users of the following servers
+ "ignore_servers" ("WhatNET.wStats", "Network.Services", "Other.Services");
+};
+
"rlimits" {
"data" "50M";
"stack" "6M";
|