summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2023-03-06 10:26:44 -0600
committerTony Asleson <tasleson@redhat.com>2023-03-06 10:26:44 -0600
commitc8f2125b85afe043af1b2e887a80f882b8d8d7c7 (patch)
tree3e345cbd5b883c643e8683e7d95fb51100f78585
parentdf6120e9f715c58327451f650c003d09842f33c7 (diff)
downloadlvm2-c8f2125b85afe043af1b2e887a80f882b8d8d7c7.tar.gz
lvmdbusd: Add needed env. variables
When running lvmdb.py by itself for testing we need these.
-rw-r--r--daemons/lvmdbusd/lvmdb.py.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/daemons/lvmdbusd/lvmdb.py.in b/daemons/lvmdbusd/lvmdb.py.in
index 41fedb80f..e6bec926a 100644
--- a/daemons/lvmdbusd/lvmdb.py.in
+++ b/daemons/lvmdbusd/lvmdb.py.in
@@ -437,6 +437,8 @@ class DataStore(object):
if __name__ == "__main__":
+ os.environ["LC_ALL"] = "C"
+ os.environ["LVM_COMMAND_PROFILE"] = "lvmdbusd"
pp = prettyprint.PrettyPrinter(indent=4)
ds = DataStore()