summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a82ff66)
raw | patch | inline | side by side (parent: a82ff66)
author | octo <octo> | |
Fri, 16 Dec 2005 10:11:34 +0000 (10:11 +0000) | ||
committer | octo <octo> | |
Fri, 16 Dec 2005 10:11:34 +0000 (10:11 +0000) |
src/Makefile.am | patch | blob | history | |
src/collectd.c | patch | blob | history | |
src/collectd.h | patch | blob | history |
diff --git a/src/Makefile.am b/src/Makefile.am
index f4ac403ce21a5ac49ab12974d674f3abe504f02b..186c19b2c0eee9088b63e85a8ca4ed9882f62a04 100644 (file)
--- a/src/Makefile.am
+++ b/src/Makefile.am
plugin.c plugin.h \
configfile.c configfile.h
#collectd_CFLAGS = -DPLUGINDIR='"$(pkglibdir)"'
-collectd_CPPFLAGS = -DLOCALSTATEDIR='"$(localstatedir)"' -DSYSCONFDIR='"$(sysconfdir)"' -DPLUGINDIR='"$(pkglibdir)"'
+collectd_CPPFLAGS =
+collectd_CPPFLAGS += -DSYSCONFDIR='"${sysconfdir}"'
+collectd_CPPFLAGS += -DPKGLOCALSTATEDIR='"${localstatedir}/${PACKAGE_NAME}"'
+collectd_CPPFLAGS += -DPIDFILE='"${localstatedir}/run/${PACKAGE_NAME}.pid"'
+collectd_CPPFLAGS += -DPLUGINDIR='"${pkglibdir}"'
collectd_LDFLAGS = -export-dynamic
collectd_CFLAGS = -Werror
collectd_LDADD = $(LIBLTDL) libconfig/libconfig.la "-dlopen" self
pkglib_LTLIBRARIES += users.la
users_la_SOURCES = users.c users.h
users_la_LDFLAGS = -module -avoid-version
+users_la_CFLAGS = -Werror
collectd_LDADD += "-dlopen" users.la
collectd_DEPENDENCIES += users.la
endif
diff --git a/src/collectd.c b/src/collectd.c
index ca7edb5408478bf8641b7110032d76f6fe30fee0..394ac84338a0a5914c1d9b74f11e42dc9178110f 100644 (file)
--- a/src/collectd.c
+++ b/src/collectd.c
"Available options:\n"
" General:\n"
- " -d <dir> Base directory to use.\n"
+ " -C <dir> Configuration directory.\n"
" Default: %s\n"
- " -P <dir> Set the plugin-directory\n"
+ " -P <file> PID File.\n"
" Default: %s\n"
- " -f Don't fork to the background\n"
+ " -M <dir> Module/Plugin directory.\n"
+ " Default: %s\n"
+ " -D <dir> Data storage directory.\n"
+ " Default: %s\n"
+ " -f Don't fork to the background.\n"
#ifdef HAVE_LIBRRD
- " -l Start in local mode (no network)\n"
- " -c Start in client (sender) mode\n"
- " -s Start in server (listener) mode\n"
+ " -l Start in local mode (no network).\n"
+ " -c Start in client (sender) mode.\n"
+ " -s Start in server (listener) mode.\n"
#endif /* HAVE_LIBRRD */
#if COLLECT_PING
" Ping:\n"
"\n%s %s, http://verplant.org/collectd/\n"
"by Florian octo Forster <octo@verplant.org>\n"
"for contributions see `AUTHORS'\n",
- PACKAGE, DATADIR, PLUGINDIR, PACKAGE, VERSION);
+ PACKAGE, SYSCONFDIR, PIDFILE, PLUGINDIR, PKGLOCALSTATEDIR, PACKAGE, VERSION);
exit (0);
}
pid_t pid;
#endif
- char *plugindir = NULL;
- char *basedir = DATADIR;
- char *configfile = NULL;
+ char *confdir = SYSCONFDIR;
+ char *pidfile = PIDFILE;
+ char *plugindir = PLUGINDIR;
+ char *datadir = PKGLOCALSTATEDIR;
int daemonize = 1;
operating_mode = MODE_LOCAL;
#endif
- /*
- * open syslog
- */
+ /* open syslog */
openlog (PACKAGE, LOG_CONS | LOG_PID, LOG_DAEMON);
- /*
- * read options
- */
+ /* read options */
while (1)
{
int c;
- c = getopt (argc, argv, "d:fP:h"
+ c = getopt (argc, argv, "C:P:M:D:fh"
#if HAVE_LIBRRD
"csl"
#endif /* HAVE_LIBRRD */
operating_mode = MODE_LOCAL;
break;
#endif /* HAVE_LIBRRD */
- case 'd':
- basedir = optarg;
+ case 'C':
+ confdir = optarg;
+ break;
+ case 'P':
+ pidfile = optarg;
+ break;
+ case 'M':
+ plugindir = optarg;
+ break;
+ case 'D':
+ datadir = optarg;
break;
case 'f':
daemonize = 0;
fprintf (stderr, "Maximum of %i ping hosts reached.\n", MAX_PINGHOSTS);
break;
#endif /* COLLECT_PING */
- case 'P':
- plugindir = optarg;
- break;
-
case 'h':
default:
exit_usage (argv[0]);
* Change directory. We do this _after_ reading the config and loading
* modules to relative paths work as expected.
*/
- if (change_basedir (basedir))
+ if (change_basedir (datadir))
{
- fprintf (stderr, "Error: Unable to change to directory `%s'.\n", basedir);
+ fprintf (stderr, "Error: Unable to change to directory `%s'.\n", datadir);
return (1);
}
#endif
start_client ();
- /*
- * close syslog
- */
+ /* close syslog */
syslog (LOG_INFO, "Exiting normally");
closelog ();
diff --git a/src/collectd.h b/src/collectd.h
index 32b9735d1b77c2ae094fd9ac44440cc8ddddb0f7..7a3eb8d5bb51fa280964d428fa11408936a28535 100644 (file)
--- a/src/collectd.h
+++ b/src/collectd.h
# include <ctype.h>
#endif
+#if HAVE_SYSLOG
+# define syslog(...) syslog(__VA_ARGS__)
+# if HAVE_OPENLOG
+# define openlog(...) openlog(__VA_ARGS__)
+# else
+# define openlog(...) /**/
+# endif
+# if HAVE_CLOSELOG
+# define closelog(...) closelog(__VA_ARGS__)
+# else
+# define closelog(...) /**/
+# endif
+#else
+# define syslog(...) /**/
+# define openlog(...) /**/
+# define closelog(...) /**/
+#endif
+
#ifndef HAVE_RRD_H
#undef HAVE_LIBRRD
#endif
#include <statgrab.h>
#endif
-#ifndef LOCALSTATEDIR
-#define LOCALSTATEDIR "/opt/collectd/var"
-#endif
-
-#ifndef DATADIR
-#define DATADIR LOCALSTATEDIR"/lib/collectd"
-#endif
-
-#ifndef PLUGINDIR
-#define PLUGINDIR "/opt/collectd/lib/collectd"
-#endif
-
-#ifndef PIDFILE
-#define PIDFILE LOCALSTATEDIR"/run/collectd.pid"
-#endif
-
#ifndef SYSCONFDIR
#define SYSCONFDIR "/opt/collectd/etc"
#endif