diff options
author | 2013-10-02 13:36:45 -0400 | |
---|---|---|
committer | 2013-10-03 01:16:44 -0400 | |
commit | 40fb67227cf3dc76ea7e35af1086c0288c8c351a (patch) | |
tree | 44869fd24ec1919213b22d09cd038d49f72cba77 | |
parent | ca21057bd38ba8e3922e26736d7e7600ee9d660e (diff) | |
download | meta-cloud-services-40fb67227cf3dc76ea7e35af1086c0288c8c351a.tar.gz meta-cloud-services-40fb67227cf3dc76ea7e35af1086c0288c8c351a.tar.bz2 meta-cloud-services-40fb67227cf3dc76ea7e35af1086c0288c8c351a.zip |
nova: use ${sysconfdir} instead of ${NOVA_CONF_DIR}
${NOVA_CONF_DIR} points to the staging/build directories, so it shouldn't be
placed into on-target config files. Using ${sysconfdir} is the right, on-target,
directory to use.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-nova.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-nova.inc b/meta-openstack/recipes-devtools/python/python-nova.inc index be464600..01483e7f 100644 --- a/meta-openstack/recipes-devtools/python/python-nova.inc +++ b/meta-openstack/recipes-devtools/python/python-nova.inc @@ -42,7 +42,7 @@ do_install_append() { # Set up rootwrap.conf, pointing to /etc/nova/rootwrap.d install -m 644 ${S}/etc/nova/rootwrap.conf ${NOVA_CONF_DIR}/ - sed -e "s:^filters_path=.*$:filters_path=${NOVA_CONF_DIR}/rootwrap.d:" \ + sed -e "s:^filters_path=.*$:filters_path=${sysconfdir}/nova/rootwrap.d:" \ -i ${NOVA_CONF_DIR}/rootwrap.conf chown root:root $NOVA_CONF_DIR/rootwrap.conf |