manila/contrib/devstack
Csaba Henk 1108a11d56 devstack: strip obsolete part of m-shr instumentation
The standard way of running services in screen windows
is the

$ cd $<SERVICE>_DIR && <SERVICE_CMD> --config-file $<SERVICE>_CONF

In case of the m-shr window (manila-share service) this was prefixed
with some initialization command to work around some initialization
context issues.

That's not required anymore, as those were specific to the lvm
driver, and now Manila is configured with lvm as default.
(If someone wishes to use lvm s/he can be referred to the cinder-volume
service which exhibits an issue analogous to that of Manila's lvm).

So we can go back to the standard format.

Change-Id: Ie7b3f08d5efcd8571d108b99ed766f10771398a2
2014-06-05 07:54:03 +02:00
..
extras.d Added creation of secgroup for service vms in devstack plugin 2014-04-15 10:04:08 -04:00
lib devstack: strip obsolete part of m-shr instumentation 2014-06-05 07:54:03 +02:00
README.rst Place devstack files to proper dirs 2013-12-05 14:11:31 +02:00

README.rst

Devstack Integration

This directory contains the files necessary to integrate Manila with devstack.

To install:

$ DEVSTACK_DIR=/path/to/devstack

$ cp lib/manila ${DEVSTACK_DIR}/lib

$ cp extras.d/70-manila.sh ${DEVSTACK_DIR}/extras.d

note: 70-manila.sh uses simple lvm-driver without multitenancy support.

To configure devstack to run manila:

$ cd ${DEVSTACK_DIR}

$ services=(manila m-api m-shr m-sch); for item in ${services[*]}; do echo "enable_service $item" >> localrc; done