
This patch makes it possible to build the Virtualbox-compatible OVA archive withouth using vagrant, virtualbox, or vmware-specific tools. Currently the created ova archive can be imported on VirtualBox and VMWare Player, the disk image itself can be used with libvirt (qemu-kvm). It contains all the drivers that enables using it as a desktop system with shared clipboard, auto-resizing display, etc. Since the diskimage-builder method installs in chroot, there is no way to pre-install devstack by running stack.sh. The image makes a best effort including all the deb and pip packages to make the first run of stack.sh as short as possible. Change-Id: Ie1f6e44db7e0af8d072cfdf16ace1ba3f749c246
8 lines
318 B
Bash
Executable File
8 lines
318 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Set Apache WSGI modules' process and thread count
|
|
sudo sed -i '/WSGIDaemonProcess/s/processes=[0-9]*/processes=1/g' /etc/apache2/sites-available/horizon.conf
|
|
sudo sed -i '/WSGIDaemonProcess/s/threads=[0-9]*/threads=5/g' /etc/apache2/sites-available/horizon.conf
|
|
|
|
sudo service apache2 reload
|