46b5911a15
A recent commit [1] change how docker is installed and configured on the overcloud nodes, from a cloud-init script to a proper puppet profile in puppet-tripleo but forgot to enable the docker service on the compute nodes. [1] Ia50169819cb959025866348b11337728f8ed5c9e Change-Id: I202723d0e48f110e5b0dbfe3dcf6646da9f37948
9 lines
259 B
Bash
Executable File
9 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
set -eux
|
|
# This file contains setup steps that can't be or have not yet been moved to
|
|
# puppet
|
|
|
|
# Disable libvirtd since it conflicts with nova_libvirt container
|
|
/usr/bin/systemctl disable libvirtd.service
|
|
/usr/bin/systemctl stop libvirtd.service
|