diff options
Diffstat (limited to 'docker/firstboot/setup_docker_host.sh')
-rwxr-xr-x | docker/firstboot/setup_docker_host.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/firstboot/setup_docker_host.sh b/docker/firstboot/setup_docker_host.sh new file mode 100755 index 00000000..8b4c6a03 --- /dev/null +++ b/docker/firstboot/setup_docker_host.sh @@ -0,0 +1,8 @@ +#!/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 |