summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glusternagios/utils.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/glusternagios/utils.py b/glusternagios/utils.py
index 18acb77..0211e53 100644
--- a/glusternagios/utils.py
+++ b/glusternagios/utils.py
@@ -104,6 +104,14 @@ setsidCmdPath = CommandPath("setsid",
sudoCmdPath = CommandPath("sudo",
"/bin/sudo",
)
+lvsCmdPath = CommandPath("lvs",
+ "/sbin/lvs",
+ )
+vgsCmdPath = CommandPath("vgs",
+ "/sbin/vgs",
+ )
+pvsCmdPath = CommandPath("pvs",
+ "/sbin/pvs")
# Buffsize is 1K because I tested it on some use cases and 1K was fastest. If
# you find this number to be a bottleneck in any way you are welcome to change
# it