Disable file injection by default
Nova change 9ce99a44cf85e431227536e2251ef05b52e61524 disabled
file injection with the libvirt driver by default back in Icehouse.
With nova change Ieb0f64847e31622bd86d1c5f4672c37b3a89f197,
requesting file injection on a host that disables it will result
in a failure.
Tempest should also disable file injection by default since the
entire stack has to be configured properly to test this.
Change-Id: Ibcf7f87feda86242de17c035fd62a86aabebf919
Closes-Bug: #1598581
diff --git a/tempest/config.py b/tempest/config.py
index eb5e23a..70ba452 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -366,7 +366,7 @@
default=True,
help='Does the test environment have the nova cert running?'),
cfg.BoolOpt('personality',
- default=True,
+ default=False,
help='Does the test environment support server personality'),
cfg.BoolOpt('attach_encrypted_volume',
default=True,