242738e47a
Added file to allow installation of the plugin in devstack Change-Id: If4bf5bdfd60ed30f0cf1a8ebe9e94e78f7054729
11 lines
390 B
Bash
11 lines
390 B
Bash
# 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
|