Michael Gugino 06081df5ab Implement nova-lxd driver
This patch set is designed to allow deployers to select
the virt_type = 'lxc', which will deploy the nova-lxd
driver instead of the usual kvm driver.

Change-Id: I8b298080faaef9da1ab0040de437086a1a393296
2016-08-08 18:05:13 -04:00

13 lines
320 B
Django/Jinja

#!/bin/bash
# {{ ansible_managed }}
# This is a script to configure lxd system settings.
# "/usr/bin/lxd init"
/usr/bin/lxd init \
--auto \
--network-address={{ lxd_bind_address }} \
--network-port={{ lxd_bind_port }} \
--storage-backend={{ lxd_storage_backend }} \
--trust-password={{ lxd_trust_password }}