1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 10:25:13 +03:00

lvmdbusd: Add --nojson command line option

Add ability to not use the JSON output even if available.
This commit is contained in:
Tony Asleson 2016-06-28 13:32:39 -05:00
parent e6e5c3d3ec
commit 1d3532d0a7

View File

@ -101,6 +101,10 @@ def main():
help="Dump debug messages", default=False,
dest='debug')
parser.add_argument("--nojson", action='store_false',
help="Do not use LVM JSON output", default=None,
dest='use_json')
use_session = os.getenv('LVMDBUSD_USE_SESSION', False)
# Ensure that we get consistent output for parsing stdout/stderr
@ -137,7 +141,7 @@ def main():
cfg.load = load
cfg.db = lvmdb.DataStore()
cfg.db = lvmdb.DataStore(args.use_json)
# Start up thread to monitor pv moves
thread_list.append(