summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6f30c75)
raw | patch | inline | side by side (parent: 6f30c75)
author | Pavel Rochnyack <pavel2000@ngs.ru> | |
Mon, 23 Oct 2017 14:00:52 +0000 (21:00 +0700) | ||
committer | Pavel Rochnyack <pavel2000@ngs.ru> | |
Mon, 23 Oct 2017 14:00:52 +0000 (21:00 +0700) |
src/lvm.c | patch | blob | history |
diff --git a/src/lvm.c b/src/lvm.c
index 4bb1c3409ea25f9145d0c5148b9052568f5a3429..3ec79dea90c113505997ba8bbae6774f2190caf3 100644 (file)
--- a/src/lvm.c
+++ b/src/lvm.c
return 0;
} /*lvm_read */
-static int lvm_init(void) {
+static int c_lvm_init(void) {
#if defined(HAVE_SYS_CAPABILITY_H) && defined(CAP_SYS_ADMIN)
if (check_capability(CAP_SYS_ADMIN) != 0) {
if (getuid() == 0)
- WARNING("smart plugin: Running collectd as root, but the "
+ WARNING("lvm plugin: Running collectd as root, but the "
"CAP_SYS_ADMIN capability is missing. The plugin's read "
"function will probably fail. Is your init system dropping "
"capabilities?");
else
- WARNING("smart plugin: collectd doesn't have the CAP_SYS_ADMIN "
+ WARNING("lvm plugin: collectd doesn't have the CAP_SYS_ADMIN "
"capability. If you don't want to run collectd as root, try "
"running \"setcap cap_sys_admin=ep\" on the collectd binary.");
}
}
void module_register(void) {
- plugin_register_init("lvm", lvm_init);
+ plugin_register_init("lvm", c_lvm_init);
plugin_register_read("lvm", lvm_read);
} /* void module_register */