Comment 0 for bug 1237581

Revision history for this message
Min Li (limin-marcus) wrote :

Hi all,

I found two bugs when trying devstack with docker.

The first one is in file "devstack / tools / docker / install_docker.sh", line 41:
    "install_package --force-yes lxc-docker=${DOCKER_PACKAGE_VERSION} socat"
should be:
    "install_package --force-yes lxc-docker-${DOCKER_PACKAGE_VERSION} socat"

The second one is in file "devstack / lib / nova_plugins / hypervisor-docker", line 75:
    "if ! is_package_installed lxc-docker; then"
should be:
    "if ! is_package_installed lxc-docker-${DOCKER_PACKAGE_VERSION}; then"

After fixing the two bugs, docker and devstack installation can proceed as expected.

Thank you!