Skip to content
Snippets Groups Projects
Commit 4ab76ed9 authored by Jeffrey Zhang's avatar Jeffrey Zhang
Browse files

Put upper limit on cmd2 in kolla-toolbox

This fixes an issue with cmd2 >= 0.9.0 requiring python3.

Change-Id: I5f88f0b0540785f8e7b7ab7c5252c6a51f314922
Closes-Bug: #1773938
parent 295f6c7e
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ function setup_ansible {
RAW_INVENTORY=/etc/kolla/inventory
# TODO(SamYaple): Move to virtualenv
sudo -H pip install -U "ansible>=2,<2.4" "docker>=2.0.0" "python-openstackclient" "python-neutronclient" "ara"
sudo -H pip install -U "ansible>=2,<2.4" "docker>=2.0.0" "python-openstackclient" "python-neutronclient" "ara" "cmd2<0.9.0"
detect_distro
sudo mkdir /etc/ansible
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment