Merge "Refactor setup_docker_host.sh as host_prep_tasks"
commit
9436d87e7e
@ -1,11 +0,0 @@
|
||||
#!/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
|
||||
# Disable virtlogd since it conflicts with nova_virtlogd container
|
||||
/usr/bin/systemctl disable virtlogd.service
|
||||
/usr/bin/systemctl stop virtlogd.service
|
@ -1,19 +0,0 @@
|
||||
heat_template_version: pike
|
||||
|
||||
resources:
|
||||
|
||||
userdata:
|
||||
type: OS::Heat::MultipartMime
|
||||
properties:
|
||||
parts:
|
||||
- config: {get_resource: setup_docker_host}
|
||||
|
||||
setup_docker_host:
|
||||
type: OS::Heat::SoftwareConfig
|
||||
properties:
|
||||
group: script
|
||||
config: {get_file: ./setup_docker_host.sh}
|
||||
|
||||
outputs:
|
||||
OS::stack_id:
|
||||
value: {get_resource: userdata}
|
Loading…
Reference in New Issue