mirror of
https://github.com/jcwimer/openstack-exporter
synced 2026-03-24 17:44:42 +00:00
9 lines
208 B
Bash
9 lines
208 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
export DISPLAY=:99
|
|
export DBUS_SESSION_BUS_ADDRESS=/dev/null
|
|
echo "Starting X virtual framebuffer (Xvfb) in background..."
|
|
Xvfb -ac :99 -screen 0 1280x1024x16 > /dev/null 2>&1 &
|
|
|
|
exec "$@" |