aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL13
-rw-r--r--Makefile2
2 files changed, 14 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..5228433
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,13 @@
+Installation is simple:
+
+make PLUGINDIR=/etc/munin/plugins install
+/etc/init.d/munin-node restart
+
+The default uri used to connect to libvirt is "qemu:///system". This can be
+changed in the plugin configuration:
+
+cat <<EOF >/etc/munin/plugin-conf.d/libvirt
+[libvirt-*]
+env.uri xen:///
+EOF
+
diff --git a/Makefile b/Makefile
index 1359236..e17133e 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ PLUGINS=libvirt-cputime \
libvirt-ifstat \
libvirt-mem
-ALL=$(PLUGINS) Makefile COPYING
+ALL=$(PLUGINS) Makefile COPYING INSTALL
PYFILES=$(patsubst %,%.py,$(PLUGINS))
install: $(PLUGINS)