Browse code

Add cli_dir to tempest config

Add the cli_dir option to the generated tempest config. This is
required on platforms such as RHEL where the binaries are not in the
standard location.

Note that to be fully operational this requires [1] in tempest so that
the cli path is created correctly.

[1] https://review.openstack.org/#/c/34302/

Change-Id: Ic7369193f1434974366cfabc7550e8545de244cd

Ian Wienand authored on 2013/06/25 13:11:48
Showing 1 changed files
... ...
@@ -281,6 +281,9 @@ function configure_tempest() {
281 281
         iniset $TEMPEST_CONF volume backend2_name "LVM_iSCSI_2"
282 282
     fi
283 283
 
284
+    # cli
285
+    iniset $TEMPEST_CONF cli cli_dir $NOVA_BIN_DIR
286
+
284 287
     echo "Created tempest configuration file:"
285 288
     cat $TEMPEST_CONF
286 289