Devstack plugin installtion

Added file to allow installation of the plugin in devstack

Change-Id: If4bf5bdfd60ed30f0cf1a8ebe9e94e78f7054729
This commit is contained in:
Murad Awawdeh 2016-07-17 11:15:38 +03:00
parent 3858dfcb94
commit 242738e47a
2 changed files with 21 additions and 0 deletions

11
devstack/README.rst Normal file
View File

@ -0,0 +1,11 @@
==================
Horizon Mellanox enable
==================
1) Download DevStack
2) Add this as an external repository::
enable_plugin horizon_mellanox git://github.com/openstack/horizon-mellanox <branch>
3) run 'stack.sh'

10
devstack/plugin.sh Normal file
View File

@ -0,0 +1,10 @@
# plugin.sh
if [[ "$1" == "stack" && "$2" == "post-config" ]]; then
setup_develop $DEST/horizon_mellanox
cp ${DEST}/horizon_mellanox/enabled/_7000_mlx.py /opt/stack/horizon/openstack_dashboard/local/enabled/
cd /opt/stack/horizon
python manage.py collectstatic --clear --noinput
python manage.py compress --force
service apache2 restart > /dev/null 2>&1 || true
fi