view ci/setup-xvfb.sh @ 29822:5d9fd7b1217b v9.0.0250

patch 9.0.0250: slightly inconsistent error messages Commit: https://github.com/vim/vim/commit/dde77a7c4d72622284dc5fb72557bde42c314fa6 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 23 21:41:15 2022 +0100 patch 9.0.0250: slightly inconsistent error messages Problem: Slightly inconsistent error messages. Solution: Make it "Using a Float". (closes https://github.com/vim/vim/issues/10959)
author Bram Moolenaar <Bram@vim.org>
date Tue, 23 Aug 2022 22:45:02 +0200
parents 1984a3fcc953
children
line wrap: on
line source

#!/bin/bash
set -e

apt-get install -y xvfb

cat <<EOT >/etc/systemd/system/xvfb.service
[Unit]
Description=X Virtual Frame Buffer Service
After=network.target
[Service]
ExecStart=/usr/bin/Xvfb :99 -screen 0 1024x768x24
[Install]
WantedBy=multi-user.target
EOT

systemctl enable xvfb.service
systemctl start xvfb.service