summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2016-07-27 18:43:27 -0500
committerTony Asleson <tasleson@redhat.com>2016-07-28 11:13:29 -0500
commit4bc351d65879f319cf94cc59ff781ca3d649060f (patch)
tree9e43cf43021352b2293eb5351f3652d07f0295af
parent20b21f4fd85532bd63a699aac4fc34f5786cf96d (diff)
downloadlvm2-4bc351d65879f319cf94cc59ff781ca3d649060f.tar.gz
lvmdbusd: Add '-y' to lvconvert for lv cache create
When converting to a cache lv, tests were hanging with a prompt for "Do you want wipe existing metadata of cache pool volume To preserve cache metadata add option "--zero n". WARNING: Reusing mismatched cache pool metadata MAY DESTROY YOUR DATA!" This is new.
-rw-r--r--daemons/lvmdbusd/cmdhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemons/lvmdbusd/cmdhandler.py b/daemons/lvmdbusd/cmdhandler.py
index 391757d6d..fac582cc5 100644
--- a/daemons/lvmdbusd/cmdhandler.py
+++ b/daemons/lvmdbusd/cmdhandler.py
@@ -411,7 +411,7 @@ def lv_cache_lv(cache_pool_full_name, lv_full_name, cache_options):
# lvconvert --type cache --cachepool VG/CachePoolLV VG/OriginLV
cmd = ['lvconvert']
cmd.extend(options_to_cli_args(cache_options))
- cmd.extend(['--type', 'cache', '--cachepool',
+ cmd.extend(['-y', '--type', 'cache', '--cachepool',
cache_pool_full_name, lv_full_name])
return call(cmd)